Skip to content

Commit 65d0f2a

Browse files
committed
chore: Update .llmignore to include additional cache and environment files
This commit enhances the .llmignore file by adding entries for various cache directories (.mypy_cache/, .pytest_cache/, .ruff_cache/) and environment files (.env, .env.local, etc.) to ensure they are ignored during project operations. This helps maintain a cleaner project structure and prevents unnecessary files from being tracked.
1 parent 6c883ce commit 65d0f2a

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.llmignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,24 @@ __pycache__/
1414

1515
# Ignore all files in 'secrets' directory
1616
secrets/
17+
18+
.mypy_cache/
19+
.pytest_cache/
20+
.ruff_cache/
21+
.vscode/
22+
.venv/
23+
.env
24+
.env.local
25+
.env.development.local
26+
.env.test.local
27+
.env.production.local
28+
29+
coverage.xml
30+
.coverage
31+
.coverage.*
32+
.coverage.*.*
33+
.coverage.*.*.*
34+
.coverage.*.*.*.*
35+
.coverage.*.*.*.*.*
36+
.coverage.*.*.*.*.*.*
37+
.coverage.*.*.*.*.*.*.*

0 commit comments

Comments
 (0)