chore: add ignore word (#181)

pull/180/head^2
Ming Tsai 2021-04-13 19:09:05 -04:00 committed by GitHub
parent 4d5176223f
commit 2017c59218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ jobs:
- run: pip install bandit black codespell flake8 isort mypy pytest pyupgrade safety
- run: bandit --recursive --skip B101 . # B101 is assert statements
- run: black --check . || true
- run: codespell --ignore-words-list="ans,nnumber" --quiet-level=2 # --skip=""
- run: codespell --ignore-words-list="ans,nnumber,nin" --quiet-level=2 # --skip=""
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- run: isort --check-only --profile black .
- run: pip install -r requirements.txt || true