Commit Diff


commit - 000ed5c7fe67d4d8956bdb0c863e108fcb2e1bd3
commit + e3333e030179ee2497ac6907a5957fb6daa9f9dd
blob - 4503a93f8eaf4f5dd0b7cfb6661cda2f197e4256
blob + 4efe218df4705b4872b4fbc19bac6377aacf3d44
--- .codespellrc
+++ .codespellrc
@@ -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
blob - f8394b70e96c50def4b75cefd43767682f51892c
blob + 3e446cbf91cdcde876da75c530189719a92b4fa3
--- .github/workflows/pythontest.yml
+++ .github/workflows/pythontest.yml
@@ -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
blob - 9948240f563288356649e9bebf4587b1c85a24e1
blob + 112e0cd238044a9aaee44fcdfb0c38888a751c0c
--- Makefile
+++ Makefile
@@ -78,3 +78,8 @@ apidocs:
 
 fix:
 	ruff check --fix .
+
+.PHONY: codespell
+
+codespell:
+	codespell --config .codespellrc .