31 lines
601 B
Plaintext
31 lines
601 B
Plaintext
# .secretsignore - Patterns to exclude from secret scanning
|
|
# Copy this to your project root as .secretsignore and customize
|
|
#
|
|
# Each line is a regex pattern matched against file paths
|
|
# Lines starting with # are comments
|
|
|
|
# Test fixtures and mocks
|
|
test_fixtures/
|
|
tests/mocks/
|
|
\.test\.
|
|
\.spec\.
|
|
_test\.py$
|
|
_mock\.py$
|
|
|
|
# Example/template files (already excluded by default, but explicit)
|
|
\.example$
|
|
\.sample$
|
|
\.template$
|
|
|
|
# Generated files
|
|
\.min\.js$
|
|
bundle\.js$
|
|
vendor/
|
|
|
|
# Documentation (already excluded by default)
|
|
docs/
|
|
\.md$
|
|
|
|
# Specific files with known false positives
|
|
# path/to/specific/file.py
|