Skip to content

Commit 94aa4e7

Browse files
committed
build: expand codespell coverage and skip list
1 parent 28a6e79 commit 94aa4e7

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ typecheck: _require-uv
7373

7474
# check code for common misspellings
7575
spell: _require-uv
76-
uv run --extra dev codespell src scripts examples
76+
uv run --extra dev codespell .
7777

7878
# run all quality checks
7979
check: lint coverage typecheck spell

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ reportUnnecessaryTypeIgnoreComment = "warning"
114114
reportMissingParameterType = "warning"
115115

116116
[tool.codespell]
117-
skip = ".git,uv.lock"
117+
skip = ".git,.venv,uv.lock,html,htmlcov,build,dist,docs/_build,*.egg-info,__pycache__,*.pyc,.pytest_cache,.ruff_cache"
118+
ignore-words-list = "implementors,NotIn"
118119

119120
[tool.pytest.ini_options]
120121
testpaths = ["src/rattle/tests"]

0 commit comments

Comments
 (0)