2018-08-02 07:02:17 -03:00
|
|
|
[flake8]
|
|
|
|
ignore =
|
|
|
|
# H301: one import per line
|
|
|
|
H301,
|
|
|
|
# H306: imports not in alphabetical order (time, os)
|
|
|
|
H306,
|
|
|
|
# E226: missing whitespace around arithmetic operator
|
|
|
|
E226,
|
|
|
|
# E261 at least two spaces before inline comment
|
2021-02-11 18:57:04 -04:00
|
|
|
E261,
|
|
|
|
# W504 line break after binary operator
|
2021-02-16 19:36:25 -04:00
|
|
|
W504,
|
|
|
|
# E203 whitespace before ':'
|
2021-02-16 19:33:19 -04:00
|
|
|
E203,
|
|
|
|
# E221 multiple spaces before operator
|
|
|
|
E221
|
2018-08-02 07:02:17 -03:00
|
|
|
|
|
|
|
max-line-length = 127
|