-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.claudeignore
More file actions
82 lines (73 loc) · 918 Bytes
/
Copy path.claudeignore
File metadata and controls
82 lines (73 loc) · 918 Bytes
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
# .claudeignore — tells Claude Code CLI which files/dirs to skip
# Works like .gitignore. Dramatically reduces token usage on every prompt.
# Reference: reddit.com/r/ClaudeAI workaround B2
# Dependencies
node_modules/
vendor/
.venv/
venv/
env/
.env.*/
# Build output
dist/
build/
out/
.next/
.nuxt/
.svelte-kit/
__pycache__/
*.pyc
*.pyo
*.pyd
# Lock files (large, never need to read)
package-lock.json
yarn.lock
pnpm-lock.yaml
poetry.lock
Gemfile.lock
composer.lock
cargo.lock
# Generated / minified assets
*.min.js
*.min.css
*.map
*.bundle.js
*.chunk.js
# Coverage / test artifacts
coverage/
.nyc_output/
htmlcov/
.pytest_cache/
.rspec/
# Logs & temp files
*.log
*.tmp
*.cache
.cache/
tmp/
temp/
# Binary / media (never useful to read)
*.jpg
*.jpeg
*.png
*.gif
*.ico
*.webp
*.woff
*.woff2
*.ttf
*.eot
*.mp4
*.mp3
*.pdf
*.zip
*.tar.gz
*.gz
# System
.DS_Store
Thumbs.db
desktop.ini
# IDE
.idea/
*.suo
*.user