We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 231d649 + c404149 commit a53710bCopy full SHA for a53710b
3 files changed
.gitignore
@@ -0,0 +1,66 @@
1
+```
2
+# Compiled and binary files
3
+*.pyc
4
+*.class
5
+*.o
6
+*.exe
7
+*.dll
8
+*.so
9
+*.a
10
+*.obj
11
+*.out
12
+
13
+# Dependencies
14
+node_modules/
15
+venv/
16
+.venv/
17
+__pycache__/
18
+dist/
19
+build/
20
+target/
21
+.gradle/
22
+.mypy_cache/
23
+.pytest_cache/
24
25
+# Editors and IDEs
26
+.vscode/
27
+.idea/
28
+*.swp
29
+*.swo
30
+*.tmp
31
32
+# System and environment
33
+.DS_Store
34
+Thumbs.db
35
+.env
36
+.env.local
37
+*.env.*
38
+*.log
39
+coverage/
40
+htmlcov/
41
+.coverage
42
43
+# Compressed files
44
+*.zip
45
+*.gz
46
+*.tar
47
+*.tgz
48
+*.bz2
49
+*.xz
50
+*.7z
51
+*.rar
52
+*.zst
53
+*.lz4
54
+*.lzh
55
+*.cab
56
+*.arj
57
+*.rpm
58
+*.deb
59
+*.Z
60
+*.lz
61
+*.lzo
62
+*.tar.gz
63
+*.tar.bz2
64
+*.tar.xz
65
+*.tar.zst
66
0 commit comments