Ignores backend/tests/*.py across all git history to avoid false positives on variable names like 's3_key' in test assertions.
9 lines
214 B
TOML
9 lines
214 B
TOML
# Gitleaks configuration
|
|
# https://github.com/gitleaks/gitleaks#configuration
|
|
|
|
[allowlist]
|
|
# Test files that contain variable names matching secret patterns (e.g., s3_key)
|
|
paths = [
|
|
'''backend/tests/.*\.py''',
|
|
]
|