Skip to content

Commit 77e6c2c

Browse files
fix: Add Python-specific patterns to .gitignore
1 parent 0c7d5d3 commit 77e6c2c

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,3 +137,38 @@ dist
137137
# Vite logs files
138138
vite.config.js.timestamp-*
139139
vite.config.ts.timestamp-*
140+
141+
# Python
142+
__pycache__/
143+
*.py[cod]
144+
*$py.class
145+
*.so
146+
.Python
147+
build/
148+
develop-eggs/
149+
dist/
150+
downloads/
151+
eggs/
152+
.eggs/
153+
lib/
154+
lib64/
155+
parts/
156+
sdist/
157+
var/
158+
wheels/
159+
*.egg-info/
160+
.installed.cfg
161+
*.egg
162+
MANIFEST
163+
.venv/
164+
venv/
165+
ENV/
166+
env/
167+
.pytest_cache/
168+
.coverage
169+
htmlcov/
170+
.tox/
171+
.hypothesis/
172+
.mypy_cache/
173+
.dmypy.json
174+
dmypy.json

0 commit comments

Comments
 (0)