InvenTree/setup.cfg
Oliver Walters 38001b5358 Peppy fixes
2019-06-13 22:16:27 +10:00

11 lines
222 B
INI

[flake8]
ignore =
# - W293 - blank lines contain whitespace
W293,
# - E501 - line too long (82 characters)
E501,
# - C901 - function is too complex
C901,
exclude = .git,__pycache__,*/migrations/*
max-complexity = 20