|
@@ -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,
|