Skip to content

Commit d9c0693

Browse files
febus982claude
andcommitted
Add .claudeignore file
Excludes IDE files, caches, build artifacts, and lock files from Claude Code indexing to reduce noise and improve context relevance. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 16afb4d commit d9c0693

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

.claudeignore

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# IDE and editor files
2+
.idea/
3+
.vscode/
4+
*.iws
5+
*.iml
6+
7+
# Python cache and bytecode
8+
__pycache__/
9+
*.py[cod]
10+
*$py.class
11+
.mypy_cache/
12+
.dmypy.json
13+
.pytest_cache/
14+
.hypothesis/
15+
16+
# Virtual environments
17+
.venv/
18+
venv/
19+
env/
20+
ENV/
21+
22+
# Build and distribution
23+
build/
24+
dist/
25+
*.egg-info/
26+
*.egg
27+
.eggs/
28+
29+
# Coverage reports
30+
htmlcov/
31+
.coverage
32+
.coverage.*
33+
coverage.xml
34+
35+
# Documentation build
36+
docs/_build/
37+
/site
38+
39+
# Database files
40+
*.db
41+
db.sqlite3
42+
43+
# Credentials and secrets
44+
credentials.env
45+
.env
46+
47+
# Docker volumes
48+
volumes/
49+
50+
# OS files
51+
.DS_Store
52+
Thumbs.db
53+
54+
# Lock files (large, not useful for code understanding)
55+
uv.lock
56+
57+
# Quality tools cache
58+
.qlty
59+
.tox/
60+
.nox/

0 commit comments

Comments
 (0)