Skip to content

Commit 2867b0a

Browse files
Add TruffleHog ignore file for secret scanning
- Add .trufflehogignore to exclude non-code files from scanning - Helps reduce noise in local TruffleHog scans - Excludes build artifacts, logs, and documentation files - Note: GitHub Action already uses --only-verified flag Historical secrets in git history have been remediated in PR #20 and all credentials have been properly masked with asterisks. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 8cd2147 commit 2867b0a

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.trufflehogignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# TruffleHog ignore file
2+
# Patterns to exclude from secret scanning
3+
4+
# Build and dependency directories
5+
.git/
6+
.bfg-report/
7+
node_modules/
8+
__pycache__/
9+
*.pyc
10+
.DS_Store
11+
12+
# Documentation and test files
13+
*.md
14+
*.txt
15+
tests/
16+
test_data/
17+
fixtures/
18+
19+
# Log files
20+
*.log
21+
*.log.*
22+
23+
# Archive files
24+
*.zip
25+
*.tar
26+
*.tar.gz
27+
*.tgz
28+
29+
# IDE files
30+
.idea/
31+
.vscode/
32+
*.swp
33+
*.swo
34+
35+
# Generated files
36+
*.min.js
37+
*.min.css
38+
dist/
39+
build/

0 commit comments

Comments
 (0)