We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e802e70 commit 3bda3c9Copy full SHA for 3bda3c9
.gitignore
@@ -1,5 +1,38 @@
1
+# Python bytecode/cache
2
+__pycache__/
3
+*.py[cod]
4
+*$py.class
5
+
6
+# Virtual environments
7
+.venv/
8
+venv/
9
+env/
10
+ENV/
11
12
+# Packaging / build outputs
13
build/
14
dist/
15
+*.egg-info/
16
+pip-wheel-metadata/
17
18
+# Test / coverage / type checker caches
19
+.pytest_cache/
20
+.coverage
21
+.coverage.*
22
+htmlcov/
23
+.mypy_cache/
24
+.ruff_cache/
25
-# Mac OS
26
+# IDE / editor
27
+.vscode/
28
+.idea/
29
30
+# OS junk
31
.DS_Store
32
+Thumbs.db
33
+Desktop.ini
34
35
+# Project local temp data
36
+tmp/
37
+temp/
38
+/[dD][eE][vV][fF][iI][lL][eE]
0 commit comments