We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e6d67c commit 2fcff17Copy full SHA for 2fcff17
.gitignore
@@ -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
43
44
+# IDE specific
45
46
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
62
+coverage.xml
0 commit comments