aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshadchin <shadchin@yandex-team.com>2024-07-09 13:59:03 +0300
committershadchin <shadchin@yandex-team.com>2024-07-09 14:14:43 +0300
commit1da5b68c73953286f4e4ec584947f201fd4998dd (patch)
treea80a3f94e189876c8901efc14b7ffcd347ec08d0
parenta9a44ec0ddef6f9e9cc0d4acf26b8e52bd2358ab (diff)
downloadydb-1da5b68c73953286f4e4ec584947f201fd4998dd.tar.gz
Sync flake8 config with black
97222e7e89b42c6f87835c3277bcb5de8312d482
-rw-r--r--build/config/tests/flake8/flake8.conf5
1 files changed, 4 insertions, 1 deletions
diff --git a/build/config/tests/flake8/flake8.conf b/build/config/tests/flake8/flake8.conf
index f2b60c9419..fda445a3f0 100644
--- a/build/config/tests/flake8/flake8.conf
+++ b/build/config/tests/flake8/flake8.conf
@@ -15,12 +15,15 @@ select =
ignore =
# closing bracket does not match indentation of opening bracket's line
E123,
- # whitespace before ':'
+ # whitespace before ':' (for black https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#e203)
E203,
# missing whitespace around arithmetic operator
E226,
# multiple spaces after ',' or tab after ','
E24,
+ # multiple statements on one line (for black https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#e701-e704)
+ E701,
+ E704,
# line break before binary operator
W503,