Text · 396 bytes Raw Blame History
1 # Python
2 __pycache__/
3 *.py[cod]
4 *$py.class
5 *.so
6
7 # Virtual envs
8 .venv/
9 venv/
10 .env
11
12 # Tooling caches
13 .mypy_cache/
14 .pytest_cache/
15 .ruff_cache/
16 .coverage
17 htmlcov/
18
19 # Build artifacts
20 build/
21 dist/
22 *.egg-info/
23
24 # Editor
25 .idea/
26 .vscode/
27 *.swp
28 .DS_Store
29
30 # Local planning artifacts — audits, sprint files, author notes.
31 # Public planning belongs on GitHub Issues / Projects; .docs/ stays local.
32 .docs/
33