1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
[flake8]
ignore =
# E201 whitespace after '('
E201,
# E221 multiple spaces before operator
E203,
# E203 whitespace before ':'
E221,
# E251 unexpected spaces around keyword / parameter equals
E251
# E303 too many blank lines
E303
#--------------------------------------------------------------------------
# PLUGINS
#--------------------------------------------------------------------------
# PT007 wrong values type in @pytest.mark.parametrize, expected list
PT007
max-line-length = 120
exclude =
.git,
.tox,
__pycache__,
build,
dist,
__init__.py,
|