-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
69 lines (59 loc) · 1.12 KB
/
.gitignore
File metadata and controls
69 lines (59 loc) · 1.12 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# =============================================================================
# GRC Engineering Standard .gitignore Template
# Owner: CISO | Version: 1.0 | Date: 2026-03-29
# Apply to ALL repositories. See SENSITIVE-DATA-POLICY.md for details.
# =============================================================================
# --- Credentials & Secrets ---
.env
.env.*
*.key
*.pem
*.p12
*.pfx
credentials.json
service-account*.json
# --- AI Agent Artifacts ---
# Claude Code (settings contain absolute paths and hook configs)
.claude/settings.json
.claude/settings.local.json
.claude/projects/
.claude/todos/
.claude/metadata-updater.sh
# Paperclip
.paperclip/
# ZERG (execution state)
.zerg/state/
.zerg/workers/
# Agent Orchestrator
.gsd/
# Memory / Work (may contain sensitive context)
MEMORY/WORK/
# --- Build Artifacts ---
/target/
/dist/
/bin/
/build/
node_modules/
*.egg-info/
__pycache__/
*.pyc
*.pyo
# --- Coverage & Test Artifacts ---
/coverage/
coverage.html
coverage.out
lcov.info
cobertura.xml
# --- OS & IDE ---
.DS_Store
Thumbs.db
.vscode/
.idea/
*.swp
*.swo
*~
# --- Virtual Environments ---
venv/
env/
ENV/
.venv/