Skip to content

Commit 2fcff17

Browse files
.gitignore fixed
1 parent 9e6d67c commit 2fcff17

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

.gitignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Logs and temp files
5+
*.log
6+
*.tmp
7+
*.swp
8+
9+
# Environment
10+
.env
11+
.env.local
12+
*.env.*
13+
14+
# Editors
15+
.vscode/
16+
.idea/
17+
18+
# Python
19+
__pycache__/
20+
*.pyc
21+
*.pyo
22+
*.pyd
23+
24+
# Build outputs
25+
dist/
26+
build/
27+
*.min.js
28+
*.bundle.js
29+
30+
# Coverage
31+
coverage/
32+
htmlcov/
33+
.coverage
34+
35+
# OS generated files
36+
.DS_Store
37+
Thumbs.db
38+
39+
# Backup files
40+
*~
41+
*.bak
42+
*.swp
43+
44+
# IDE specific
45+
.vscode/
46+
.idea/
47+
.settings/
48+
.project
49+
50+
# Distribution / packaging
51+
.Python
52+
env/
53+
venv/
54+
ENV/
55+
.venv/
56+
.env/
57+
58+
# Testing
59+
.pytest_cache/
60+
.mypy_cache/
61+
.coverage
62+
coverage.xml

0 commit comments

Comments
 (0)