diff options
| -rw-r--r-- | build/config/tests/flake8/flake8.conf | 11 | ||||
| -rw-r--r-- | build/external_resources/flake8_py3/ya.make | 10 |
2 files changed, 15 insertions, 6 deletions
diff --git a/build/config/tests/flake8/flake8.conf b/build/config/tests/flake8/flake8.conf index a4a60be7432..4977577208e 100644 --- a/build/config/tests/flake8/flake8.conf +++ b/build/config/tests/flake8/flake8.conf @@ -9,7 +9,7 @@ select = #B, S, # bandit #C, # commas #D, # docstrings - #P, # string-format + #FMT, # string-format #Q, # quotes ignore = @@ -30,6 +30,15 @@ ignore = # line break after binary operator W504, + # format string contains unindexed parameters + FMT101, + # docstring contains unindexed parameters + FMT102, + # other string contains unindexed parameters + FMT103, + # format call uses implicit and explicit indexes together + FMT205, + # astroid-error PLF002, # function-redefined diff --git a/build/external_resources/flake8_py3/ya.make b/build/external_resources/flake8_py3/ya.make index 79961a5181a..2d50f6e09e9 100644 --- a/build/external_resources/flake8_py3/ya.make +++ b/build/external_resources/flake8_py3/ya.make @@ -12,12 +12,12 @@ ENDIF() DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE( FLAKE8_PY3 - sbr:10993120939 FOR DARWIN-ARM64 - sbr:10993122025 FOR DARWIN + sbr:12763243518 FOR DARWIN-ARM64 + sbr:12763245515 FOR DARWIN sbr:6726869647 FOR LINUX-PPC64LE - sbr:10993123638 FOR LINUX - sbr:10993119916 FOR LINUX-AARCH64 - sbr:10993122759 FOR WIN32 + sbr:12763248856 FOR LINUX + sbr:12763242238 FOR LINUX-AARCH64 + sbr:12763247016 FOR WIN32 ) END() |
