From 2017c59218cd4d95fb0c1098a08a4ac6de2cd30f Mon Sep 17 00:00:00 2001 From: Ming Tsai <37890026+ming-tsai@users.noreply.github.com> Date: Tue, 13 Apr 2021 19:09:05 -0400 Subject: [PATCH] chore: add ignore word (#181) --- .github/workflows/lint_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index ec21ecb2..476d2cc8 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -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