We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a971d01 commit 477bb24Copy full SHA for 477bb24
2 files changed
changelog.d/+810de019.changed.md
@@ -0,0 +1 @@
1
+Remove unused patterns from `.gitignore` and add comments.
template/.gitignore.jinja
@@ -1,20 +1,38 @@
-*.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
+# Python packaging
14
+dist/
15
16
+# Testing
17
.coverage
18
.coverage.*
-.idea/
19
.hypothesis/
-.mypy_cache/
-.nox/
-.pdm-build/
20
.pytest_cache/
21
+htmlcov/
22
23
+# Type checking
24
+.dmypy.json
25
+.mypy_cache/
26
27
+# Linting
28
.ruff_cache/
-.tox/
-.venv/
29
30
+# Documentation
31
+/site/
32
33
+# IDEs
34
+.idea/
35
.vscode/
-build/
-dist/
-htmlcov/
-site/
36
37
+# macOS
38
+.DS_Store
0 commit comments