Skip to content

Commit

Permalink
Add codespell target
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed Oct 3, 2023
1 parent 000ed5c commit e3333e0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[codespell]
skip = .git,.mypy_cache,build,testdata
ignore-words-list = fpr,claus,feld,nd,bu,ue,te,fo,afile,Manuel
ignore-words-list = fpr,claus,feld,nd,bu,ue,te,fo,afile,manuel
2 changes: 1 addition & 1 deletion .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: codespell
run: |
pip install --upgrade codespell
codespell .
codespell --config .codespellrc .
- name: Coverage test suite run
run: |
pip install --upgrade coverage
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,8 @@ apidocs:

fix:
ruff check --fix .

.PHONY: codespell

codespell:
codespell --config .codespellrc .

0 comments on commit e3333e0

Please sign in to comment.