codespell --skip="./.*,old/*"

This commit is contained in:
Christian Clauss 2023-01-10 09:26:25 +01:00 committed by GitHub
parent 8569080978
commit b6b504f2b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ jobs:
flake8-comprehensions isort mypy pytest pyupgrade safety
- run: bandit --recursive --skip B105,B110,B404,B602,B603,B605 .
- run: black --check . || true
- run: codespell --skip="./.*,./old/" # --ignore-words-list=""
- run: codespell --skip="./.*,old/*" # --ignore-words-list=""
- run: flake8 . --count --exclude="./.*,./old/" --select=E9,F63,F7,F82 --show-source --statistics
- run: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88
--show-source --statistics