2016-12-19 17:06:43 +08:00
|
|
|
[flake8]
|
2016-12-22 15:31:18 +08:00
|
|
|
ignore =
|
2017-01-09 18:14:24 +08:00
|
|
|
# E241: multiple spaces after ':'
|
|
|
|
E241,
|
|
|
|
# E251: unexpected spaces around keyword / parameter equals
|
|
|
|
E251,
|
2016-12-22 15:31:18 +08:00
|
|
|
# E261: at least two spaces before inline comment
|
|
|
|
E261,
|
|
|
|
# E501: line too long
|
2016-12-29 18:57:06 +08:00
|
|
|
E501,
|
|
|
|
# E302: expected 2 blank lines, found 1
|
2017-01-09 18:14:24 +08:00
|
|
|
E302,
|
|
|
|
# E305: expected 2 blank lines after class or function definition, found 1
|
|
|
|
E305,
|
|
|
|
# E401: multiple imports on one line
|
|
|
|
E401
|
2016-12-22 15:31:18 +08:00
|
|
|
max-line-length = 120
|