1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
[flake8]
exclude = .git,__pycache__,build,dist
ignore =
# whitespace before ':'
E203,
# line break before binary operator
W503,
# line length too long
E501,
# do not assign a lambda expression, use a def
E731,
# too many leading '#' for block comment
E266,
# ambiguous variable name
E741,
# module level import not at top of file
E402,
# Quotes (temporary)
Q0,
# bare excepts (temporary)
B001, E722,
# Ignore "black" formatting errors, since black is already checked
BLK100
|