The findings-*.md rule (for generated timestamped reports) also matched the findings-format.md reference doc, so it was never tracked. Scope the rule to digit-prefixed names (findings-[0-9]*) and add the missing reference.
31 lines
436 B
Plaintext
31 lines
436 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Generated audit reports (timestamped runs are not source).
|
|
# Scoped to digit-prefixed names so the references/findings-format.md
|
|
# doc is NOT swallowed.
|
|
findings-[0-9]*.md
|
|
findings-[0-9]*.json
|
|
findings-[0-9]*.txt
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Editors / OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*~
|
|
.DS_Store
|