codespell --quiet-level=2 (#1711)

* codespell --quiet-level=2

Suppress the BINARY FILE warnings

* fixup! Format Python code with psf/black push
This commit is contained in:
Christian Clauss
2020-01-23 17:21:51 +01:00
committed by John Law
parent 2cf7e8f994
commit 46ac50a28e
5 changed files with 37 additions and 26 deletions

View File

@@ -10,5 +10,5 @@ jobs:
- uses: actions/setup-python@v1
- run: pip install codespell flake8
- run: |
SKIP="./.*,./other/dictionary.txt,./other/words,./project_euler/problem_22/p022_names.txt,*.bak,*.gif,*.jpeg,*.jpg,*.json,*.png,*.pyc"
codespell -L ans,fo,hist,iff,secant,tim --skip=$SKIP
SKIP="./.*,./other/dictionary.txt,./other/words,./project_euler/problem_22/p022_names.txt"
codespell -L ans,fo,hist,iff,secant,tim --skip=$SKIP --quiet-level=2