We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f84f73 commit a971d01Copy full SHA for a971d01
1 file changed
.gitignore
@@ -1,19 +1,35 @@
1
-*.egg-info
2
-*.py[co]
3
-.DS_Store
+# Cache
4
.cache/
+
+# Python
5
+*.py[codz]
6
+__pycache__/
7
8
+# Python environments
9
+.nox/
10
+.tox/
11
+.venv/
12
13
+# Testing
14
.coverage
15
.coverage.*
-.idea/
16
.hypothesis/
-.mypy_cache/
-.nox/
17
.pytest_cache/
18
+htmlcov/
19
20
+# Type checking
21
+.dmypy.json
22
+.mypy_cache/
23
24
+# Linting
25
.ruff_cache/
-.tox/
-.venv/
26
27
+# Documentation
28
+/site/
29
30
+# IDEs
31
+.idea/
32
.vscode/
-build/
-dist/
-htmlcov/
-site/
33
34
+# macOS
35
+.DS_Store
0 commit comments