-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy path.gitignore
More file actions
233 lines (193 loc) · 4.31 KB
/
Copy path.gitignore
File metadata and controls
233 lines (193 loc) · 4.31 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# Dependencies
node_modules/
# Build output
dist/
build/
*.tsbuildinfo
**/*.tsbuildinfo
tsconfig.tsbuildinfo
# TypeScript compilation artifacts in source directories (NEVER commit these!)
# Exception: proxy-bootstrap.js is a legitimate source file (not TypeScript output)
src/**/*.js
!src/proxy/proxy-bootstrap.js
src/**/*.d.ts
src/**/*.js.map
tests/**/*.js
tests/**/*.d.ts
tests/**/*.js.map
# Exception: hand-written JS debuggee fixtures (not TS output) — without this
# negation, `git add` silently skips new fixtures (how PR #252 lost one)
!tests/fixtures/debug-scripts/*.js
# Package source compilation artifacts
packages/*/src/**/*.js
packages/*/src/**/*.d.ts
packages/*/src/**/*.js.map
packages/*/tests/**/*.js
packages/*/tests/**/*.d.ts
packages/*/tests/**/*.js.map
# Package distribution files
*.tgz
packages/**/*.tgz
*.vsix
dist-tarball/
# Turbo cache (not using Turborepo)
.turbo/
# Bundled adapters (downloaded during build)
bundled-adapters/
# IDE files
.vscode/*
!.vscode/extensions.json
.idea/
*.sublime-*
*.iml
.history/
# Editor swap/backup files
*.swp
*.swo
*~
*.bak
*.tmp
# JetBrains IDEs
.idea/
# Eclipse
.project
.classpath
.settings/
# LLM files
.clinerules
.claude/
.docstar/
# Osoji (code cleanup tool)
.osoji/
.osoji.local.toml
.osojiignore
# MCP server configuration (contains local paths)
.mcp.json
# Environment variables
.env
.env.local
.env.*
!.env.example
!.env.template
# Local npm config (might contain tokens)
.npmrc
.yarnrc
# Personal configuration files that might be created
**/personal-config.json
# Logs
logs/
sessions/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
pnpm-debug.log*
.pnpm-store/
# OS files
.DS_Store
Thumbs.db
Desktop.ini
# Testing
coverage/
.nyc_output/
test-results/
junit.xml
*.tap
test-report.xml
# Node.js profiling & debugging
*.heapsnapshot
*.cpuprofile
*.heap
v8.log
.chrome/
# Build tool caches
.esbuild/
.parcel-cache/
.webpack/
.rollup.cache/
# Temporary files
tmp/
temp/
-p/
# Python cache
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
# Rust build artifacts
target/
target-linux/
Cargo.lock
# Fixture lockfiles ARE tracked: the docker cross-compile builds with --locked,
# and a fresh CI checkout without them fails ("lock file needs to be updated")
!examples/rust/*/Cargo.lock
**/*.rs.bk
examples/.cargo/
examples/rust/**/.cargo/
examples/rust/**/.debug-mcp-linux-build
# .NET build artifacts
examples/dotnet/bin/
examples/dotnet/obj/
examples/dotnet/pause_test/bin/
examples/dotnet/pause_test/obj/
# Java build artifacts
examples/java/*.class
examples/java/**/*.class
# Test results and analysis files
test-results*.json
test-output.txt
coverage-analysis-details.json
test-refactor-summary.json
# Temporary migration scripts
migrate-to-vitest.js
fix-test-imports.cjs
analyze-test-results.cjs
# Coverage analysis temporary files
coverage-analysis-details.json
# Manual tests (may be outdated)
tests/manual/
# Root-level temporary files (prevent future clutter)
/test-*
/test_*.py
/*_REPORT.md
/*_SUMMARY.md
/*_ANALYSIS.md
/integration_test_*.log
# ESLint reports (moved to docs/investigations)
eslint-*.txt
eslint-*.json
# Vendored js-debug artifacts (generated during build; do not commit)
packages/adapter-javascript/vendor/js-debug/
packages/adapter-javascript/vendor/js-debug/**
# Vendored CodeLLDB in the legacy per-adapter location (canonical copy lives in
# packages/codelldb-common/vendor, ignored by that package's own .gitignore)
packages/adapter-rust/vendor/
packages/adapter-cpp/vendor/
# Build artifacts from mcp-debugger bundling (generated during build; do not commit)
packages/mcp-debugger/proxy/
packages/mcp-debugger/vendor/
packages/mcp-debugger/package/
packages/mcp-debugger/.pack-lock
packages/mcp-debugger/package.json.backup
packages/mcp-debugger/package-cache/
# Bogus "undefined" directories from path resolution bugs
undefined/
**/undefined/
# Compiled Go binaries
examples/go/**/*.exe
examples/go/**/hello_world
examples/go/**/hello_world_bin
examples/go/**/hello_world_test
examples/go/**/hello_world_bare_test
examples/go/**/hello_world_fnbp_test
examples/go/**/hello_world_autoqualify_test
examples/go/**/pause_test_bin
__debug_bin*
# E2E test result artifacts
tests/e2e/*-results.json
# Memory benchmark results (scripts/mem-bench.mjs)
bench-results/
# Python launcher build artifacts
mcp_debugger_launcher/*.egg-info/
mcp_debugger_launcher/dist/