BillTracker/.gitleaks.toml

18 lines
367 B
TOML

title = "Bill Tracker gitleaks config"
[extend]
useDefault = true
[allowlist]
description = "Paths with no real secrets (placeholders, fixtures, generated, runtime data)"
paths = [
'''\.env\.example$''',
'''data/''',
'''.*\.db$''',
'''.*\.db-(wal|shm)$''',
'''package-lock\.json$''',
'''tests/.*\.test\.js$''',
'''e2e/.*''',
'''docs/.*\.json$''',
]