Skip to content

Commit 7a58cb0

Browse files
bruh gitignore didnt exist
1 parent e87b31b commit 7a58cb0

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

.gitignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Build directories
2+
build/
3+
dist/
4+
*.spec
5+
6+
# Python cache files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
12+
# Virtual environment
13+
venv/
14+
env/
15+
ENV/
16+
.venv/
17+
18+
# IDE files
19+
.vscode/
20+
.idea/
21+
*.swp
22+
*.swo
23+
*~
24+
25+
# OS files
26+
.DS_Store
27+
.DS_Store?
28+
._*
29+
.Spotlight-V100
30+
.Trashes
31+
ehthumbs.db
32+
Thumbs.db
33+
34+
# Logs
35+
*.log
36+
37+
# Package files
38+
*.egg-info/
39+
.eggs/
40+
41+
# Testing
42+
.pytest_cache/
43+
.coverage
44+
htmlcov/
45+
46+
# Local configuration
47+
.env
48+
config.local.py
49+
50+
# Temporary files
51+
*.tmp
52+
*.temp

0 commit comments

Comments
 (0)