1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# =============================================================================
# Rust build artifacts
# =============================================================================
/target/
# Note: Cargo.lock is intentionally NOT ignored for binaries.
# It ensures reproducible builds and should be committed.
# =============================================================================
# IDE and editor files
# =============================================================================
.idea/
.vscode/
*.iml
# =============================================================================
# macOS system files
# =============================================================================
.DS_Store
.AppleDouble
.LSOverride
# =============================================================================
# Editor backup and swap files
# =============================================================================
*~
*.swp
*.swo
# =============================================================================
# Environment variables and secrets
# =============================================================================
.env
.env.*
*.key
*.pem
*.p12
*.pfx
# =============================================================================
# Claude Code internal files
# =============================================================================
.claude/
# =============================================================================
# Test and scan output files
# =============================================================================
# JSON output from security scans
*.scan.json
scan_results*.json
output*.json
report*.json
# Markdown reports generated by scans
scan_results*.md
report*.md
output*.md