Skip to content

Commit 477bb24

Browse files
committed
refactor: update .gitignore
1 parent a971d01 commit 477bb24

2 files changed

Lines changed: 32 additions & 13 deletions

File tree

changelog.d/+810de019.changed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove unused patterns from `.gitignore` and add comments.

template/.gitignore.jinja

Lines changed: 31 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,38 @@
1-
*.egg-info
2-
*.py[co]
3-
.DS_Store
1+
# Cache
42
.cache/
3+
4+
# 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
517
.coverage
618
.coverage.*
7-
.idea/
819
.hypothesis/
9-
.mypy_cache/
10-
.nox/
11-
.pdm-build/
1220
.pytest_cache/
21+
htmlcov/
22+
23+
# Type checking
24+
.dmypy.json
25+
.mypy_cache/
26+
27+
# Linting
1328
.ruff_cache/
14-
.tox/
15-
.venv/
29+
30+
# Documentation
31+
/site/
32+
33+
# IDEs
34+
.idea/
1635
.vscode/
17-
build/
18-
dist/
19-
htmlcov/
20-
site/
36+
37+
# macOS
38+
.DS_Store

0 commit comments

Comments
 (0)