[python] disable some more whitespace-related lints

This commit is contained in:
Dmytro Meleshko 2021-06-09 19:37:36 +03:00
parent 656b1d74a3
commit e5a5579a10

View file

@ -31,6 +31,14 @@ ignore =
E121 E121
# Hanging indent on a continuation line is unaligned # Hanging indent on a continuation line is unaligned
E131 E131
# Whitespace before a comma
E203
# Multiple spaces before an operator
E221
# Multiple spaces after an operator
E222
# Whitespace after a comma
E241
# Import not at the top of the file # Import not at the top of the file
E402 E402
# Line too long # Line too long