-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.gitignore
More file actions
209 lines (172 loc) · 3.39 KB
/
.gitignore
File metadata and controls
209 lines (172 loc) · 3.39 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
# 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
# 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/
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
# 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/**
# 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/**/pause_test_bin
__debug_bin*
# E2E test result artifacts
tests/e2e/*-results.json