Update lint_python.yml

codespell --ignore-words-list="sav,te,wan"
This commit is contained in:
Christian Clauss 2021-01-17 09:38:22 +01:00 committed by GitHub
parent bbf9068ebe
commit 7c0e75feaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ jobs:
- run: pip install bandit black codespell flake8 isort mypy pytest pyupgrade
- run: bandit -r . || true
- run: black --check . || true
- run: codespell --quiet-level=2 || true # --ignore-words-list="" --skip=""
- run: codespell --ignore-words-list="sav,te,wan" --quiet-level=2 || true # --skip=""
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- run: isort --check-only --profile black . || true
- run: pip install -r requirements.txt || true