Skip to content

Commit cad7530

Browse files
committed
chore: add .gitignore with standard exclusions for Python projects.
1 parent 689752b commit cad7530

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed

.gitignore

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
############################
2+
# Frontend files (ignore)
3+
############################
4+
*.html
5+
*.css
6+
*.js
7+
8+
############################
9+
# Python cache / build
10+
############################
11+
__pycache__/
12+
*.py[cod]
13+
*$py.class
14+
15+
############################
16+
# Virtual environments
17+
############################
18+
.venv/
19+
venv/
20+
env/
21+
ENV/
22+
23+
############################
24+
# Environment variables
25+
############################
26+
.env
27+
.env.*
28+
29+
############################
30+
# Packaging / build output
31+
############################
32+
build/
33+
dist/
34+
*.egg-info/
35+
.eggs/
36+
37+
############################
38+
# Test / coverage
39+
############################
40+
.pytest_cache/
41+
.coverage
42+
.coverage.*
43+
htmlcov/
44+
45+
############################
46+
# Jupyter / notebooks
47+
############################
48+
.ipynb_checkpoints/
49+
50+
############################
51+
# Logs
52+
############################
53+
*.log
54+
55+
############################
56+
# OS / editor junk
57+
############################
58+
.DS_Store
59+
Thumbs.db
60+
61+
############################
62+
# IDEs
63+
############################
64+
.vscode/
65+
.idea/
66+
*.swp
67+
*.swo

0 commit comments

Comments
 (0)