Skip to content

Commit 2a99205

Browse files
committed
chore: Extend gitignore
1 parent c792c22 commit 2a99205

File tree

1 file changed

+26
-3
lines changed

1 file changed

+26
-3
lines changed

.gitignore

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
1-
# Python folders
1+
# Python bytecode files
2+
*.pyc
3+
*.pyo
4+
*.pyd
5+
6+
# Cache directories
27
__pycache__/
8+
.pytest_cache/
9+
.mypy_cache/
10+
.cache/
11+
12+
# Build and distribution directories
13+
build/
14+
dist/
15+
*.egg-info/
16+
17+
# Virtual environments
18+
.env/
19+
.venv/
20+
env/
21+
ENV/
22+
23+
# VSCode specific files
24+
.vscode/
25+
*.code-workspace
326

4-
# OS generated files and folders
27+
# OS generated files
528
.DS_Store
6-
npm-debug.log
29+
npm-debug.log

0 commit comments

Comments
 (0)