.cursorignore
| 1 | # Cursor indexing exclusions |
| 2 | |
| 3 | # Git internals |
| 4 | .git/worktrees/ |
| 5 | |
| 6 | # Python bytecode |
| 7 | **/__pycache__/ |
| 8 | **/*.pyc |
| 9 | **/*.pyo |
| 10 | |
| 11 | # Build / dist artifacts |
| 12 | dist/ |
| 13 | *.egg-info/ |
| 14 | |
| 15 | # Test and coverage caches |
| 16 | .pytest_cache/ |
| 17 | .mypy_cache/ |
| 18 | .coverage |
| 19 | htmlcov/ |
| 20 | |
| 21 | # Environment |
| 22 | .venv/ |
| 23 | venv/ |