Compare commits

...

2 Commits

4 changed files with 2 additions and 4 deletions

View File

@ -29,7 +29,6 @@ asgi-lifespan = "^2.1.0"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
wemake-python-styleguide = "^0.18.0" wemake-python-styleguide = "^0.18.0"
flake8-pytest-style = "^1.7.2" flake8-pytest-style = "^1.7.2"
flake8-SQL = "^0.4.1"
flake8-annotations = "^3.0.1" flake8-annotations = "^3.0.1"
flake8-logging-format = "^0.9.0" flake8-logging-format = "^0.9.0"
flake8-spellcheck = "^0.28.0" flake8-spellcheck = "^0.28.0"

View File

@ -1,5 +1,5 @@
[flake8] [flake8]
per-file-ignores = tests/**.py: S101, D103, ANN201 per-file-ignores = tests/**.py: S101, S106, D103, ANN201, WPS442
spellcheck-targets=comments spellcheck-targets=comments
sql-excepted-names=EXISTS sql-excepted-names=EXISTS
ignore = F841,W504 ignore = F841,W504

View File

@ -1,5 +1,5 @@
["setup.cfg".flake8] ["setup.cfg".flake8]
ignore = "F841,W504" ignore = "F841,W504"
per-file-ignores = "tests/**.py: S101, D103, ANN201" per-file-ignores = "tests/**.py: S101, S106, D103, ANN201, WPS442"
spellcheck-targets = "comments" spellcheck-targets = "comments"
sql-excepted-names = "EXISTS" sql-excepted-names = "EXISTS"

View File

@ -4,7 +4,6 @@ python = "^3.10"
["pyproject.toml".tool.poetry.group.dev.dependencies] ["pyproject.toml".tool.poetry.group.dev.dependencies]
wemake-python-styleguide = "^0.18.0" wemake-python-styleguide = "^0.18.0"
flake8-pytest-style = "^1.7.2" flake8-pytest-style = "^1.7.2"
flake8-SQL = "^0.4.1"
flake8-annotations = "^3.0.1" flake8-annotations = "^3.0.1"
flake8-logging-format = "^0.9.0" flake8-logging-format = "^0.9.0"
flake8-spellcheck = "^0.28.0" flake8-spellcheck = "^0.28.0"