Skip to content

Commit df89a93

Browse files
committed
Expand gitignore and ignore OS/editor artifacts
1 parent df71d9f commit df89a93

1 file changed

Lines changed: 25 additions & 1 deletion

File tree

.gitignore

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
1+
# OS-generated files
2+
.DS_Store
3+
Thumbs.db
4+
15
# Cache directories
26
.cache/
7+
.pytest_cache/
38

49
# Python
510
__pycache__/
611
*.py[cod]
712
*$py.class
813
*.pyc
14+
.python-version
15+
.mypy_cache/
16+
.ruff_cache/
17+
.coverage
18+
.coverage.*
19+
htmlcov/
920

1021
# Output files
1122
*.csv
@@ -21,4 +32,17 @@ env/
2132
claudecode/claudecode-prompt.txt
2233
eval_results/
2334

24-
.env
35+
.env
36+
.env.*
37+
38+
# Editor / IDE
39+
.idea/
40+
.vscode/
41+
*.swp
42+
*.swo
43+
44+
# Node / Bun
45+
node_modules/
46+
47+
# Logs
48+
*.log

0 commit comments

Comments
 (0)