# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg
*.egg-info/
dist/
build/
*.whl

# Virtual envs
.venv/
venv/
env/
ENV/

# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/

# Linters / type checkers
.ruff_cache/
.mypy_cache/
.pyright/
.pyre/

# uv
uv.lock

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# nodesafe runtime
nodesafe.sarif
nodesafe-report.json
nodesafe-report.html
.nodesafe-cache/

# Models y firmas descargadas (no commiteamos modelos grandes)
src/nodesafe/data/models/*.bin
src/nodesafe/data/models/*.safetensors
src/nodesafe/data/cache/

# Local secrets
.env
.env.local
*.pem
*.key

# Auto-generated test signature DB (populated by conftest.py)
tests/_signatures/
