2020-07-14 01:43:53 +02:00
|
|
|
[pycodestyle]
|
|
|
|
ignore =
|
2021-02-12 22:10:45 +01:00
|
|
|
# These rules are ignored for the reasons explained in the comments.
|
|
|
|
# See https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes for
|
|
|
|
# error code definitions.
|
2020-07-14 01:43:53 +02:00
|
|
|
|
2020-09-02 05:22:01 +02:00
|
|
|
# All formatting is handled by Black.
|
|
|
|
E1,
|
|
|
|
E2,
|
|
|
|
E3,
|
|
|
|
E401,
|
|
|
|
E5,
|
|
|
|
E701,
|
|
|
|
E702,
|
|
|
|
E703,
|
|
|
|
E704,
|
|
|
|
W1,
|
|
|
|
W2,
|
|
|
|
W3,
|
|
|
|
W5,
|
2020-07-14 01:43:53 +02:00
|
|
|
|
|
|
|
# "module level import not at top of file"
|
|
|
|
# Most of these are there for valid reasons, though there might be a
|
|
|
|
# few that could be eliminated.
|
|
|
|
E402,
|
|
|
|
|
|
|
|
# "do not assign a lambda expression, use a def"
|
|
|
|
# Fixing these would probably reduce readability in most cases.
|
|
|
|
E731,
|