-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
141 lines (125 loc) · 5.88 KB
/
Copy path.gitignore
File metadata and controls
141 lines (125 loc) · 5.88 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# ──────────────────────────────────────────────
# Logs
# ──────────────────────────────────────────────
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# ──────────────────────────────────────────────
# Runtime / process
# ──────────────────────────────────────────────
pids
*.pid
*.seed
*.pid.lock
# ──────────────────────────────────────────────
# Coverage & test reports
# ──────────────────────────────────────────────
coverage
agent/.coverage
*.lcov
# Codecov uploader binary + signature files downloaded by codecov-action at CI time
codecov
codecov.*
.nyc_output
.jest-cache
*.tsbuildinfo
lib-cov
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
/test-reports/
junit.xml
/coverage/
# ──────────────────────────────────────────────
# Node / JS
# ──────────────────────────────────────────────
node_modules/
jspm_packages/
.eslintcache
*.tgz
.yarn-integrity
.cache
.parcel-cache/
# ──────────────────────────────────────────────
# Python
# ──────────────────────────────────────────────
*.pyc
__pycache__/
agent/.venv/
# ──────────────────────────────────────────────
# CDK / CloudFormation outputs
# ──────────────────────────────────────────────
cdk.out/
/cdk/cdk.out*/
/cdk/cdk-*.out/
.cdk.staging/
cdk.context.json
/assets/
# integ-runner snapshots: these bundle every Lambda handler asset (~100 MB) and
# are regenerated on each run. CI always deploys-then-verifies (integ-runner
# --force) rather than diffing a committed snapshot, so the snapshot is a build
# artifact, not source. Also catch integ-runner's temp synth dir.
/cdk/test/integ/*.snapshot/
/cdk/test/integ/cdk-integ.out.*/
# ──────────────────────────────────────────────
# CI artifacts (generated during build)
# ──────────────────────────────────────────────
deploy-intent.json
# ──────────────────────────────────────────────
# Build outputs (compiled TS → JS)
# ──────────────────────────────────────────────
/cdk/lib/
/cli/lib/
/dist/
build/Release
# ──────────────────────────────────────────────
# Docs build
# ──────────────────────────────────────────────
/docs/dist/
local-docs/
# ──────────────────────────────────────────────
# IDE / editor
# ──────────────────────────────────────────────
.idea
.vscode
.DS_Store
# ──────────────────────────────────────────────
# Security scan outputs
# ──────────────────────────────────────────────
gitleaks-*.json
agent/gitleaks-report.json
# ──────────────────────────────────────────────
# Environment / secrets
# ──────────────────────────────────────────────
.env
.env.*
.claude/settings.local.json
# ──────────────────────────────────────────────
# Claude Code plugins
# ──────────────────────────────────────────────
.mcp.json
.remember/
.claude/worktrees/
# ──────────────────────────────────────────────
# Misc
# ──────────────────────────────────────────────
*.bkp
Plans/
# draw.io editor artifacts
.$*.drawio.bkp
# ──────────────────────────────────────────────
# Explicit keeps (override ignores above)
# ──────────────────────────────────────────────
!.node-version
!.ort.yml
!/.github/workflows/build.yml
!/.github/workflows/docs.yml
!/.github/pull_request_template.md
!/.mergify.yml
!/cdk/test/
!/cdk/tsconfig.json
!/cdk/tsconfig.dev.json
!/cdk/src/
!/cdk/.eslintrc.json
!/cdk/cdk.json