diff --git a/cookiecutter-python/{{ cookiecutter.project_slug }}/setup.cfg b/cookiecutter-python/{{ cookiecutter.project_slug }}/setup.cfg index 9ecb9d9..ca49404 100644 --- a/cookiecutter-python/{{ cookiecutter.project_slug }}/setup.cfg +++ b/cookiecutter-python/{{ cookiecutter.project_slug }}/setup.cfg @@ -1,5 +1,5 @@ [flake8] -per-file-ignores = tests/**.py: S101, D103, ANN201 +per-file-ignores = tests/**.py: S101, S106, D103, ANN201, WPS442 spellcheck-targets=comments sql-excepted-names=EXISTS ignore = F841,W504 diff --git a/nitpick/flake8.toml b/nitpick/flake8.toml index 3d212a2..e31d1e5 100644 --- a/nitpick/flake8.toml +++ b/nitpick/flake8.toml @@ -1,5 +1,5 @@ ["setup.cfg".flake8] ignore = "F841,W504" -per-file-ignores = "tests/**.py: S101, D103, ANN201" +per-file-ignores = "tests/**.py: S101, S106, D103, ANN201, WPS442" spellcheck-targets = "comments" sql-excepted-names = "EXISTS"