From 7058d20a44b8672d5919d14c89c542f09f216588 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 6 Oct 2021 23:06:24 +0200 Subject: [PATCH] codespell --ignore-words-list=ans --- .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 c3b9dc0..335a50d 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -11,7 +11,7 @@ jobs: flake8-comprehensions isort mypy pytest pyupgrade safety - run: bandit --recursive --skip B311,B605 . - run: black --check . || true - - run: codespell + - run: codespell --ignore-words-list=ans - run: flake8 . --count --max-complexity=19 --max-line-length=88 --show-source --statistics - run: isort --check-only --profile black . - run: pip install -r requirements.txt || pip install --editable . || true