# Virtual environments
.venv/
venv/
env/

# Python cache
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.pyc
.Python

# Build / dist
build/
dist/
*.egg-info/
*.egg
.eggs/

# Test / coverage
.pytest_cache/
.coverage
coverage.xml
htmlcov/
.tox/

# Linting
.ruff_cache/
.mypy_cache/

# Reports (generated output)
reports/

# Analysis log emitted by the detectors
code_analysis.log

# ONNX models exported/downloaded for the TD classifier
*.onnx

# HuggingFace model cache
.cache/huggingface/
huggingface/

# Cloned repos (temp)
/tmp/code_review_repos/

# Editors
.vscode/
.idea/
.cursor/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Secrets — never commit these
.env
*.env
secrets.yaml

# uv
.python-version
