flake8-string-format

This commit is contained in:
Andrey Rakhmatullin 2024-06-19 23:28:58 +05:00
parent d132190625
commit a617e04d2e
2 changed files with 7 additions and 2 deletions

View File

@ -1,8 +1,12 @@
[flake8]
max-line-length = 119
ignore = E203, E501, E701, E704, W503
ignore =
E203, E501, E701, E704, W503
# docstring does contain unindexed parameters
P102
# other string does contain unindexed parameters
P103
exclude =
docs/conf.py

View File

@ -10,6 +10,7 @@ repos:
- id: flake8
additional_dependencies:
- flake8-debugger
- flake8-string-format
- repo: https://github.com/psf/black.git
rev: 24.2.0
hooks: