Skip to content

Commit 4a4cc76

Browse files
committed
chore: add .gitignore
1 parent 96fe938 commit 4a4cc76

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

.gitignore

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
.env
23+
.venv
24+
env/
25+
venv/
26+
ENV/
27+
28+
# Node.js
29+
node_modules/
30+
npm-debug.log*
31+
yarn-debug.log*
32+
yarn-error.log*
33+
.pnp/
34+
.pnp.js
35+
dist/
36+
.next/
37+
out/
38+
39+
# Rust
40+
target/
41+
Cargo.lock
42+
43+
# IDE
44+
.vscode/
45+
.idea/
46+
*.swp
47+
*.swo
48+
.DS_Store
49+
Thumbs.db
50+
51+
# Testing
52+
.coverage
53+
.pytest_cache/
54+
coverage/
55+
*.lcov
56+
htmlcov/
57+
58+
# Environment
59+
.env
60+
.env.local
61+
.env.*.local
62+
*.key
63+
*.pem
64+
secrets/
65+
66+
# Logs
67+
logs/
68+
*.log
69+
npm-debug.log*
70+
71+
# Docker
72+
.dockerignore

0 commit comments

Comments
 (0)