/ .gitignore
.gitignore
 1  .venv/
 2  venv/
 3  __pycache__/
 4  *.py[cod]
 5  *.egg
 6  *.egg-info/
 7  dist/
 8  build/
 9  .pytest_cache/
10  .mypy_cache/
11  .ruff_cache/
12  .coverage
13  coverage.xml
14  htmlcov/
15  .tox/
16  *.spec.bak
17  Autoreview.spec
18  .DS_Store
19  .idea/
20  .vscode/
21  *.swp
22  *.swo
23  
24  # Generated review report (optional)
25  VENICE_CODE_REVIEW.md
26  
27  # Secrets (never commit)
28  .env
29  .env.*
30  !.env.example
31  
32  # Local review state inside a target repo (document for users)
33  .venice_review/