Skip to content

Commit 3bda3c9

Browse files
committed
Update .gitignore
1 parent e802e70 commit 3bda3c9

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

.gitignore

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
1+
# Python bytecode/cache
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Virtual environments
7+
.venv/
8+
venv/
9+
env/
10+
ENV/
11+
12+
# Packaging / build outputs
113
build/
214
dist/
15+
*.egg-info/
16+
pip-wheel-metadata/
17+
18+
# Test / coverage / type checker caches
19+
.pytest_cache/
20+
.coverage
21+
.coverage.*
22+
htmlcov/
23+
.mypy_cache/
24+
.ruff_cache/
325

4-
# Mac OS
26+
# IDE / editor
27+
.vscode/
28+
.idea/
29+
30+
# OS junk
531
.DS_Store
32+
Thumbs.db
33+
Desktop.ini
34+
35+
# Project local temp data
36+
tmp/
37+
temp/
38+
/[dD][eE][vV][fF][iI][lL][eE]

0 commit comments

Comments
 (0)