Skip to content

Commit 9d29ef0

Browse files
e1washerebaberabb
andauthored
chore: clean up and extend .gitignore rules (#3030)
* chore: clean up and extend .gitignore rules * pacify pre-commit --------- Co-authored-by: Baber <[email protected]>
1 parent 8bc4aff commit 9d29ef0

File tree

1 file changed

+41
-20
lines changed

1 file changed

+41
-20
lines changed

.gitignore

Lines changed: 41 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,47 @@
1+
# macOS system files
12
.DS_Store
2-
env
3-
*.pyc
4-
output/
5-
data/
6-
lm_cache
7-
.idea
8-
build
9-
dist
10-
*.egg-info
11-
venv
3+
4+
# Virtual environments
125
.venv/
6+
venv/
7+
ENV/
8+
env/
9+
*.env
10+
11+
# Python bytecode and build artifacts
12+
__pycache__/
13+
*.py[cod]
14+
*.so
15+
*.egg-info/
16+
build/
17+
dist/
18+
19+
# IDE & editor settings
1320
.vscode/
14-
temp
15-
__pycache__
16-
.ipynb_checkpoints
17-
temp
18-
test_logs/
19-
# IPython
21+
.idea/
22+
23+
# Jupyter
24+
.ipynb_checkpoints/
2025
profile_default/
2126
ipython_config.py
22-
# don't track (the default location of) the cached requests
27+
28+
# Output and data
29+
output/
30+
data/
31+
temp/
32+
test_logs/
33+
34+
# Caching
2335
lm_eval/caching/.cache
24-
# don't track files created by wandb
25-
wandb
26-
examples/wandb
36+
lm_cache/
37+
38+
# Logging
39+
*.log
40+
logs/
41+
42+
# wandb experiment tracking
43+
wandb/
44+
examples/wandb/
45+
46+
# PyInstaller
47+
*.spec

0 commit comments

Comments
 (0)