We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 501f305 commit e265933Copy full SHA for e265933
justfile
@@ -28,11 +28,11 @@ mypy:
28
29
# Run typos spell checker
30
typos:
31
- typos --config typos.toml .
+ typos --config typos.toml --hidden .
32
33
# Fix typos
34
typos-fix:
35
- typos --config typos.toml --write-changes .
+ typos --config typos.toml --hidden --write-changes .
36
37
# Update version in __init__.py
38
update-version:
typos.toml
@@ -9,6 +9,7 @@ extend-ignore-re = [
9
10
[files]
11
extend-exclude = [
12
+ ".git",
13
".venv",
14
"uv.lock",
15
"CHANGELOG.md",
0 commit comments