flake8: make rules compatible with black

pull/25/head
Jan Pochyla 6 years ago
parent bf9f503c3c
commit d83c0fa932

@ -1,5 +1,7 @@
[flake8]
ignore =
# E203 whitespace before ':'
E203,
# E221: multiple spaces before operator
E221,
# E241: multiple spaces after ':'
@ -13,7 +15,9 @@ ignore =
# F403: star import used, unable to detect undefined names
F403,
# F405: name may be undefined, or defined from star imports
F405
F405,
# W503: line break before binary operator
W503
[isort]
multi_line_output = 3

Loading…
Cancel
Save