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 30 31
|
[flake8]
ignore =
# module level import not at top of file
E402,
# line break before binary operator
W503,
# expected 2 blank lines after class or function definition
E305,
# do not assign a lambda expression, use a def
E731,
# line too long
E501,
# do not use bare 'except'
E722,
# whitespace before ':'
E203,
# do not compare types
E721,
# continuation line unaligned for hanging indent
E131,
# line break after binary operator
W504,
exclude =
setup.py
.git, __pycache__, docs/
build, dist
max-complexity = 40
|