-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.contextignore
More file actions
207 lines (185 loc) · 2.63 KB
/
.contextignore
File metadata and controls
207 lines (185 loc) · 2.63 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
# =============================================================================
# Context Engine Ignore File
# Files and patterns listed here will be excluded from context indexing
# Based on AI_INDEXING_BEST_PRACTICES.md
# =============================================================================
# === Dependencies & Package Managers ===
node_modules/
vendor/
Pods/
.pub-cache/
# === Build Artifacts & Outputs ===
dist/
build/
out/
target/
bin/
obj/
release/
debug/
.output/
# === Flutter/Dart Specific ===
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
*.g.dart
*.freezed.dart
*.mocks.dart
*.gr.dart
*.pb.dart
*.pbjson.dart
pubspec.lock
ephemeral/
.symlinks/
# === Generated Code ===
*.generated.ts
*.generated.js
*.pb.go
*.pb.cc
*_pb2.py
*_pb2_grpc.py
# === Test Coverage & Reports ===
coverage/
.nyc_output/
htmlcov/
test-results/
.pytest_cache/
# === Python Virtual Environments ===
venv/
.venv/
__pycache__/
*.pyc
*.pyo
*.egg-info/
# === Lock Files (auto-generated, verbose) ===
package-lock.json
yarn.lock
pnpm-lock.yaml
Cargo.lock
Gemfile.lock
poetry.lock
composer.lock
bun.lockb
# === Source Maps & Minified Files ===
*.map
*.js.map
*.css.map
*.min.js
*.min.css
*.bundle.js
*.chunk.js
# === Binary Images ===
*.png
*.jpg
*.jpeg
*.gif
*.bmp
*.webp
*.ico
*.icns
*.svg
*.psd
# === Fonts ===
*.ttf
*.otf
*.woff
*.woff2
*.eot
# === Media Files ===
*.mp3
*.mp4
*.wav
*.ogg
*.webm
*.mov
*.avi
# === Documents & Archives ===
*.pdf
*.doc
*.docx
*.xls
*.xlsx
*.ppt
*.pptx
*.zip
*.tar
*.gz
*.rar
*.7z
# === Compiled Binaries ===
*.dll
*.exe
*.so
*.dylib
*.dill
*.class
*.jar
*.war
*.o
*.obj
*.wasm
# === IDE & Editor Files ===
.vscode/
.idea/
.vs/
.fleet/
*.iml
.project
.classpath
*.swp
*.swo
# === OS Files ===
.DS_Store
Thumbs.db
desktop.ini
# === Version Control Internals ===
.git/
.svn/
.hg/
# === Secrets & Credentials (Security) ===
.env
.env.local
.env.development
.env.production
.env.staging
*.key
*.pem
*.p12
*.jks
secrets.yaml
secrets.json
# === Logs & Temporary Files ===
*.log
*.tmp
*.temp
*.bak
logs/
tmp/
# === Volatile Benchmark/Review Artifacts ===
# Keep stable evidence files indexable; exclude ephemeral run outputs.
.augment-search-cache.json.tmp
artifacts/bench/archive/*-tmp-*/
artifacts/bench/*.tmp.json
artifacts/bench/*.bad.json
artifacts/review_diff*
# === State Files ===
.augment-context-state.json
.context-engine/
# === Modern Build Tool Caches ===
.next/
.nuxt/
.svelte-kit/
.cache/
.parcel-cache/
.turbo/
.angular/
.gradle/
# === Platform-Specific Build Outputs ===
android/build/
android/.gradle/
ios/Pods/
ios/.symlinks/
ios/Flutter/ephemeral/
macos/Flutter/ephemeral/
windows/flutter/ephemeral/
linux/flutter/ephemeral/