Skip to content

Commit e265933

Browse files
committed
fix(typos): enable hidden directory scanning
- Add --hidden flag to typos commands in justfile - Exclude .git directory from typos scanning - This ensures .claude/ rules are checked for typos
1 parent 501f305 commit e265933

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ mypy:
2828

2929
# Run typos spell checker
3030
typos:
31-
typos --config typos.toml .
31+
typos --config typos.toml --hidden .
3232

3333
# Fix typos
3434
typos-fix:
35-
typos --config typos.toml --write-changes .
35+
typos --config typos.toml --hidden --write-changes .
3636

3737
# Update version in __init__.py
3838
update-version:

typos.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ extend-ignore-re = [
99

1010
[files]
1111
extend-exclude = [
12+
".git",
1213
".venv",
1314
"uv.lock",
1415
"CHANGELOG.md",

0 commit comments

Comments
 (0)