Update lint_python.yml

This commit is contained in:
Christian Clauss 2023-01-10 09:31:47 +01:00 committed by GitHub
parent e93b3091c5
commit 98f415ec10
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