forked from shepherdjerred/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitleaks.toml
More file actions
38 lines (37 loc) · 1.63 KB
/
Copy path.gitleaks.toml
File metadata and controls
38 lines (37 loc) · 1.63 KB
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
[extend]
useDefault = true
[allowlist]
paths = [
'''packages/dotfiles/Library/Application Support/pinchtab/config\.json''',
# Archive projects — legacy code, not deployed
'''archive/''',
# Worktrees from Claude Code agents
'''\.claude/worktrees/''',
# Lock files — contain hashes, not secrets
'''\.lock$''',
'''Podfile\.lock$''',
'''Manifest\.lock$''',
# Generated/vendored code
'''generated/imports/''',
'''\.build/checkouts/''',
'''debug/index/store/''',
'''src/cdk8s/dist/''',
# Minecraft server config files (RCON passwords are non-sensitive defaults)
'''config/minecraft-.*/server\.properties$''',
# Example private key in Rust code (test/documentation constant, not a real key)
'''packages/clauderon/src/proxy/talos_gateway\.rs''',
# JWT in README (documentation example)
'''packages/discord-plays-pokemon/README\.md''',
# Google Maps API key (restricted to specific referrer, public-facing)
'''packages/better-skill-capped/fetcher/src/''',
# Patch files — git object hashes falsely flagged as sourcegraph-access-token
'''patches/satori@.*\.patch$''',
'''packages/.*/patches/satori@.*\.patch$''',
# Skill/reference docs — example curl commands and API key placeholders
'''packages/dotfiles/dot_claude/skills/tailscale-helper/references/''',
'''packages/dotfiles/dot_claude/skills/grafana-helper/SKILL\.md''',
# Cloudflare operator Helm chart URL contains "apikey" substring
'''packages/homelab/src/cdk8s/src/resources/argo-applications/cloudflare-operator\.ts''',
# CI step key "smoke-test-discord-plays-pokemon" falsely flagged as discord-client-secret
'''scripts/ci/src/steps/images\.ts''',
]