Files
notifications-admin/.flake8
Leo Hemsted d59c3abf2b combine flake8 configs
also, importantly, remove the `select` config, as this implicitly
ignores every other warning type
2019-11-29 15:25:37 +00:00

16 lines
391 B
INI

[flake8]
# Rule definitions: http://flake8.pycqa.org/en/latest/user/error-codes.html
exclude = venv*,__pycache__,node_modules,cache
max-complexity = 14
max-line-length = 120
# B003 assigning to os.environ
# B306 BaseException.message has been deprecated
# W503: line break before binary operator
# W504 line break after binary operator
extend_ignore=
B003,
B306,
W503,
W504