thorns 5.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.thornsignore ADDED
@@ -0,0 +1,581 @@
1
+ # Thorns Default Ignore Patterns
2
+ # Ultra-comprehensive ignore list for all languages and frameworks
3
+
4
+ # === VERSION CONTROL ===
5
+ .git/
6
+ .svn/
7
+ .hg/
8
+ .bzr/
9
+ CVS/
10
+
11
+ # === NODE / JAVASCRIPT / TYPESCRIPT ===
12
+ node_modules/
13
+ .npm/
14
+ .yarn/
15
+ .pnp.*
16
+ .pnp/
17
+ yarn-error.log
18
+ npm-debug.log*
19
+ .eslintcache
20
+ .node_repl_history
21
+ *.tsbuildinfo
22
+ .next/
23
+ .nuxt/
24
+ dist/
25
+ out/
26
+ build/
27
+ .cache/
28
+ .parcel-cache/
29
+ .vite/
30
+ .turbo/
31
+
32
+ # === PYTHON ===
33
+ __pycache__/
34
+ *.py[cod]
35
+ *$py.class
36
+ *.so
37
+ .Python
38
+ env/
39
+ venv/
40
+ ENV/
41
+ .venv
42
+ pip-log.txt
43
+ pip-delete-this-directory.txt
44
+ .pytest_cache/
45
+ .hypothesis/
46
+ .mypy_cache/
47
+ .dmypy.json
48
+ .pyre/
49
+ .pytype/
50
+ *.egg-info/
51
+ dist/
52
+ build/
53
+ *.whl
54
+ .tox/
55
+ .coverage
56
+ htmlcov/
57
+
58
+ # === RUST ===
59
+ target/
60
+ Cargo.lock
61
+ **/*.rs.bk
62
+ *.pdb
63
+
64
+ # === GO ===
65
+ vendor/
66
+ *.exe
67
+ *.exe~
68
+ *.dll
69
+ *.so
70
+ *.dylib
71
+ *.test
72
+ *.out
73
+ go.work
74
+
75
+ # === JAVA ===
76
+ target/
77
+ *.class
78
+ *.jar
79
+ *.war
80
+ *.ear
81
+ *.nar
82
+ .gradle/
83
+ build/
84
+ .mvn/
85
+ !.mvn/wrapper/maven-wrapper.jar
86
+
87
+ # === C / C++ ===
88
+ *.o
89
+ *.a
90
+ *.so
91
+ *.out
92
+ *.exe
93
+ *.obj
94
+ *.dll
95
+ *.dylib
96
+ CMakeFiles/
97
+ CMakeCache.txt
98
+ cmake_build_debug/
99
+ cmake_build_release/
100
+ build/
101
+ *.cmake
102
+ !CMakeLists.txt
103
+
104
+ # === C# / .NET ===
105
+ bin/
106
+ obj/
107
+ *.suo
108
+ *.user
109
+ *.userosscache
110
+ *.sln.docstates
111
+ [Dd]ebug/
112
+ [Rr]elease/
113
+ x64/
114
+ x86/
115
+ [Bb]uild/
116
+ bld/
117
+ [Bb]in/
118
+ [Oo]bj/
119
+ *.nupkg
120
+ *.snupkg
121
+ project.lock.json
122
+ project.fragment.lock.json
123
+ artifacts/
124
+
125
+ # === RUBY ===
126
+ *.gem
127
+ *.rbc
128
+ /.config
129
+ /coverage/
130
+ /InstalledFiles
131
+ /pkg/
132
+ /spec/reports/
133
+ /spec/examples.txt
134
+ /test/tmp/
135
+ /test/version_tmp/
136
+ /tmp/
137
+ .bundle/
138
+ vendor/bundle/
139
+ lib/bundler/man/
140
+
141
+ # === PHP ===
142
+ /vendor/
143
+ composer.lock
144
+ *.phar
145
+
146
+ # === SCALA / SBT ===
147
+ target/
148
+ lib_managed/
149
+ src_managed/
150
+ project/boot/
151
+ project/plugins/project/
152
+ .history
153
+ .cache
154
+ .lib/
155
+
156
+ # === SWIFT / XCODE ===
157
+ *.xcodeproj/
158
+ *.xcworkspace/
159
+ Pods/
160
+ DerivedData/
161
+ *.moved-aside
162
+ *.pbxuser
163
+ !default.pbxuser
164
+ *.mode1v3
165
+ !default.mode1v3
166
+ *.mode2v3
167
+ !default.mode2v3
168
+ *.perspectivev3
169
+ !default.perspectivev3
170
+
171
+ # === FIREBASE ===
172
+ .firebase/
173
+ firebase-debug.log
174
+ firestore-debug.log
175
+ ui-debug.log
176
+ .firebaserc
177
+
178
+ # === LLM / AI / AGENTIC FRAMEWORKS ===
179
+ .cache/
180
+ .llamaindex/
181
+ .chroma/
182
+ .vectorstore/
183
+ .embeddings/
184
+ .langchain/
185
+ .autogen/
186
+ .semantic-kernel/
187
+ .openai-cache/
188
+ .anthropic-cache/
189
+ embeddings/
190
+ vector-db/
191
+ faiss-index/
192
+ chromadb/
193
+ pinecone-cache/
194
+ weaviate-data/
195
+
196
+ # === CLOUD PROVIDERS ===
197
+ .aws/
198
+ .azure/
199
+ .gcloud/
200
+ .terraform/
201
+ *.tfstate
202
+ *.tfstate.backup
203
+ .terraformrc
204
+ terraform.rc
205
+
206
+ # === DOCKER / CONTAINERS ===
207
+ .dockerignore
208
+ docker-compose.override.yml
209
+ .docker/
210
+
211
+ # === DATABASES ===
212
+ *.db
213
+ *.sqlite
214
+ *.sqlite3
215
+ *.sql
216
+ *.bak
217
+ *.dump
218
+
219
+ # === LOGS & TEMP FILES ===
220
+ *.log
221
+ *.tmp
222
+ *.temp
223
+ *.swp
224
+ *.swo
225
+ *~
226
+ .DS_Store
227
+ Thumbs.db
228
+ desktop.ini
229
+ *.stackdump
230
+ *.orig
231
+
232
+ # === EDITORS & IDEs ===
233
+ .vscode/
234
+ .idea/
235
+ *.iml
236
+ .project
237
+ .classpath
238
+ .settings/
239
+ *.sublime-project
240
+ *.sublime-workspace
241
+ .vs/
242
+
243
+ # === COMPILED OUTPUT ===
244
+ *.min.js
245
+ *.min.css
246
+ *.bundle.js
247
+ *.chunk.js
248
+ *.map
249
+
250
+ # === DOCUMENTATION BUILD ===
251
+ docs/_build/
252
+ site/
253
+ _site/
254
+ .docusaurus/
255
+ .vuepress/dist/
256
+
257
+ # === TEST COVERAGE ===
258
+ coverage/
259
+ .nyc_output/
260
+ lcov.info
261
+ *.lcov
262
+
263
+ # === PACKAGE MANAGERS ===
264
+ .pnpm-store/
265
+ .rush/
266
+ .lerna/
267
+
268
+ # === MONOREPO ===
269
+ .nx/
270
+ .turbo/
271
+
272
+ # === METADATA / OS ===
273
+ .Spotlight-V100
274
+ .Trashes
275
+ ehthumbs.db
276
+ .fseventsd
277
+ .TemporaryItems
278
+ .AppleDouble
279
+ .LSOverride
280
+
281
+ # === SECURITY / SECRETS ===
282
+ .env
283
+ .env.local
284
+ .env.*.local
285
+ *.key
286
+ *.pem
287
+ *.p12
288
+ *.pfx
289
+ credentials.json
290
+ secrets.yaml
291
+ secrets.yml
292
+
293
+ # === PROFILING / BENCHMARKS ===
294
+ *.prof
295
+ *.cpuprofile
296
+ *.heapprofile
297
+
298
+ # === LOCK FILES (optional - can be removed if needed) ===
299
+ package-lock.json
300
+ yarn.lock
301
+ pnpm-lock.yaml
302
+ Gemfile.lock
303
+ poetry.lock
304
+ Pipfile.lock
305
+
306
+ # === CONFIGURATION & METADATA FILES (LOW-VALUE FOR ANALYSIS) ===
307
+ *.config.js
308
+ *.config.ts
309
+ webpack.config.js
310
+ rollup.config.js
311
+ vite.config.js
312
+ tsconfig.json
313
+ jsconfig.json
314
+ babel.config.*
315
+ .babelrc
316
+ .eslintrc.*
317
+ .prettierrc.*
318
+ .stylelintrc.*
319
+ .editorconfig
320
+ .nvmrc
321
+ .env.example
322
+ .env.template
323
+ .env.sample
324
+ *.local
325
+ *.development
326
+ *.production
327
+
328
+ # === DOCUMENTATION & REFERENCE FILES ===
329
+ *.md
330
+ *.txt
331
+ *.rst
332
+ *.adoc
333
+ docs/
334
+ documentation/
335
+ wiki/
336
+ CHANGELOG*
337
+ HISTORY*
338
+ NEWS*
339
+ UPGRADING*
340
+ FAQ*
341
+ CONTRIBUTING*
342
+ SECURITY*
343
+ LICENSE*
344
+ LICENCE*
345
+ COPYRIGHT*
346
+ NOTICE*
347
+ AUTHORS*
348
+ THIRDPARTY*
349
+ *.orig
350
+ *.rej
351
+
352
+ # === TEST & COVERAGE FILES ===
353
+ *.test.*
354
+ *.spec.*
355
+ test/
356
+ tests/
357
+ __tests__/
358
+ __mocks__/
359
+ fixtures/
360
+ spec/
361
+ cypress/
362
+ playwright/
363
+ test-results/
364
+ coverage/
365
+ .nyc_output/
366
+ lcov.info
367
+ *.lcov
368
+ .coverage
369
+ pytest.ini
370
+ tox.ini
371
+ jest.config.*
372
+ vitest.config.*
373
+
374
+ # === GENERATED & BUILD ARTIFACTS ===
375
+ dist/
376
+ build/
377
+ out/
378
+ target/
379
+ .next/
380
+ .nuxt/
381
+ .gatsby/
382
+ .docusaurus/
383
+ .vuepress/dist/
384
+ site/
385
+ public/
386
+ static/
387
+ .assets/
388
+ .cache/
389
+ .parcel-cache/
390
+ .vite/
391
+ .turbo/
392
+ .tmp/
393
+ temp/
394
+
395
+ # === DATABASE & DATA FILES ===
396
+ *.db
397
+ *.sqlite
398
+ *.sqlite3
399
+ *.sql
400
+ *.bak
401
+ *.dump
402
+ *.backup
403
+ *.data/
404
+ storage/
405
+ logs/
406
+ *.log
407
+
408
+ # === IDE & EDITOR SPECIFIC ===
409
+ .vscode/
410
+ .idea/
411
+ *.iml
412
+ *.swp
413
+ *.swo
414
+ *~
415
+ .DS_Store
416
+ Thumbs.db
417
+ desktop.ini
418
+ *.sublime-*
419
+ .vs/
420
+
421
+ # === USER HOME HIDDEN FOLDERS (CACHES & CONFIGS) ===
422
+ # These should rarely be analyzed - they're user config/cache dirs
423
+ .cache/
424
+ .config/
425
+ .local/
426
+ .ssh/
427
+ .gnupg/
428
+ .kube/
429
+ .docker/
430
+ .aws/
431
+ .azure/
432
+ .gcloud/
433
+ .npm/
434
+ .yarn/
435
+ .pnpm/
436
+ .bun/
437
+ .cargo/
438
+ .rustup/
439
+ .go/
440
+ .java/
441
+ .gradle/
442
+ .m2/
443
+ .sbt/
444
+ .leiningen/
445
+ .gem/
446
+ .bundle/
447
+ .rbenv/
448
+ .rvm/
449
+ .nvm/
450
+ .python/
451
+ .venv_global/
452
+ .conda/
453
+ .mamba/
454
+ .nodenv/
455
+ .pyenv/
456
+ .rbenv/
457
+ .asdf/
458
+ .mise/
459
+ .tool-versions/
460
+ .ruby-version/
461
+ .nvmrc/
462
+ .node-version/
463
+ .env.local/
464
+ .env.*.local/
465
+ .env.vault/
466
+ .direnv/
467
+ .envrc/
468
+ .pass/
469
+ .keepass/
470
+ .bitcoin/
471
+ .ethereum/
472
+ .solana/
473
+ .phantom/
474
+ .metamask/
475
+ .wallet/
476
+ .vscode-server/
477
+ .cursor/
478
+ .cursor-pro/
479
+ .windsurf/
480
+ .zed/
481
+ .helix/
482
+ .emacs.d/
483
+ .vim/
484
+ .neovim/
485
+ .nvim/
486
+ .sublime-text/
487
+ .sublime-text-3/
488
+ .atom/
489
+ .gedit/
490
+ .kate/
491
+ .kderc/
492
+ .config.d/
493
+ .texmf/
494
+ .X11/
495
+ .fonts/
496
+ .icons/
497
+ .themes/
498
+ .terminfo/
499
+ .oh-my-zsh/
500
+ .oh-my-bash/
501
+ .bash_completion.d/
502
+ .zsh_completion.d/
503
+ .oh-my-posh/
504
+
505
+ # === LANGUAGE-SPECIFIC HOME CACHES ===
506
+ .bun/cache/
507
+ .cargo/registry/
508
+ .cargo/cache/
509
+ .rustup/toolchains/
510
+ .npm/_cacache/
511
+ .npm/_npx/
512
+ .yarn/cache/
513
+ .yarn/install-state.gz
514
+ .pnpm/store/
515
+ .pnpm/store-v3/
516
+ .gem/gems/
517
+ .gem/cache/
518
+ .gem/bundler/
519
+ .m2/repository/
520
+ .gradle/caches/
521
+ .gradle/wrapper/
522
+ .sbt/boot/
523
+ .ivy2/cache/
524
+ .java_cache/
525
+ .go/pkg/
526
+ .go/src/
527
+ .python/site-packages/
528
+ .conda/pkgs/
529
+ .mamba/pkgs/
530
+ .pipx/
531
+ .local/share/pip/
532
+ .cache/pip/
533
+
534
+ # === BUILD TOOL CACHES ===
535
+ .next/cache/
536
+ .nuxt/.cache/
537
+ .gatsby/cache/
538
+ .docusaurus/.cache/
539
+ .parcel-cache/
540
+ .cache/vite/
541
+ .turbo/cache/
542
+ .dist-newstyle/
543
+
544
+ # === VERSION CONTROL & GIT HOOKS ===
545
+ .git/objects/
546
+ .git/hooks/
547
+ .gitignore_global
548
+ .hg/cache/
549
+ .hg/strip-backup/
550
+
551
+ # === COVERAGE & TEST CACHES ===
552
+ .nyc_output/
553
+ .coverage/
554
+ .coverage.*
555
+ .pytest_cache/
556
+ .hypothesis/
557
+ htmlcov/
558
+
559
+ # === PROFILING & DEBUG ===
560
+ .prof/
561
+ .gprof/
562
+ .valgrind/
563
+ .gproftools/
564
+ .asan/
565
+ .ubsan/
566
+ .helgrind/
567
+ .memcheck/
568
+
569
+ # === OTHER SYSTEM CACHES ===
570
+ .cache/
571
+ .ccache/
572
+ .sccache/
573
+ .distcc/
574
+ .conan/
575
+ .conan2/
576
+
577
+ # === LANGUAGE LOCK FILES (optional) ===
578
+ # These are often generated and large; add if repo has many
579
+ bun.lockb
580
+ .lock.b
581
+ .lock