-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.claudeignore
More file actions
174 lines (148 loc) · 2.7 KB
/
Copy path.claudeignore
File metadata and controls
174 lines (148 loc) · 2.7 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
# Claude Code Context Exclusions
# These patterns prevent large, binary, or generated files from being loaded into context.
# Supports all 20 languages and 21 package managers detected by discover.sh.
# Customize for your project — the /bootstrap command will help fill this.
# Template upgrade staging directory (auto-removed by bootstrap on completion)
.claude-upgrade/
# ── Universal build output ──
**/node_modules/
**/dist/
**/build/
**/out/
**/vendor/
**/generated/
**/.cache/
**/__snapshots__/
# ── JavaScript / TypeScript ──
**/.next/
**/.nuxt/
**/.output/
**/.turbo/
**/.vercel/
# ── Python ──
**/__pycache__/
**/*.pyc
**/.venv/
**/venv/
**/site-packages/
**/.mypy_cache/
**/.pytest_cache/
**/.ruff_cache/
# ── Rust ──
**/target/
# ── Java / Kotlin / Scala ──
**/*.class
**/*.jar
**/*.war
**/.gradle/
**/.bsp/
**/.metals/
**/.bloop/
# ── C# / .NET ──
**/obj/
**/*.nupkg
# ── C / C++ ──
**/*.o
**/*.a
**/CMakeFiles/
**/cmake-build-*/
# ── Swift ──
**/.build/
**/.swiftpm/
Package.resolved
# ── Elixir ──
**/_build/
**/deps/
# ── PHP ──
# vendor/ covered above (universal)
# ── Dart / Flutter ──
**/.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
# ── OCaml ──
**/_opam/
# ── Clojure ──
**/.cpcache/
**/.clj-kondo/
# ── R ──
.Rhistory
.RData
**/renv/
# ── Lock files (often 10K+ lines) ──
# Node.js
pnpm-lock.yaml
package-lock.json
yarn.lock
bun.lockb
bun.lock
# Deno
deno.lock
# Rust
Cargo.lock
# Python
poetry.lock
Pipfile.lock
uv.lock
pdm.lock
# Go
go.sum
# Ruby
Gemfile.lock
# PHP
composer.lock
# Elixir
mix.lock
# Dart
pubspec.lock
# ── Coverage & analysis ──
**/coverage/
**/.scannerwork/
**/.nx/
# ── Large binary/generated files ──
**/*.pdf
**/*.png
**/*.jpg
**/*.jpeg
**/*.gif
**/*.svg
**/*.bmp
**/*.ico
**/*.woff
**/*.woff2
**/*.ttf
**/*.eot
**/*.jar
**/*.war
**/*.class
**/*.tar
**/*.tar.gz
**/*.zip
**/*.rar
**/*.7z
**/*.exe
**/*.dll
**/*.so
**/*.dylib
**/*.wasm
**/*.min.js
**/*.min.css
**/*.map
# ── IDE files ──
.idea/
*.iml
.vscode/settings.json
# ── Test output artifacts ──
claude/tasks/ci-test.txt
claude/tasks/out.txt
# ── Session logs (auto-generated by hooks) ──
claude/tasks/session-logs/
# ── Session-scoped temp files (auto-generated by hooks, cleaned at Stop) ──
claude/tasks/.claude-*
# ── graphify knowledge graph (keep GRAPH_REPORT.md readable, exclude heavy artifacts) ──
graphify-out/cache/
graphify-out/graph.html
graphify-out/graph.json
graphify-out/transcripts/
# ── cocoindex-code plugin (semantic search index — runtime artifact) ──
.cocoindex_code/
# <!-- Add project-specific exclusions below -->