Moved flake settings to setup.cfg

This commit is contained in:
Oliver Walters 2019-04-25 20:59:41 +10:00
parent f0ab95306b
commit f9a54af9b1
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ clean:
rm -f .coverage
style:
flake8 InvenTree --ignore=C901,E501
flake8 InvenTree
test:
python InvenTree/manage.py check

View File

@ -3,6 +3,6 @@ ignore =
# - W293 - blank lines contain whitespace
W293,
# - E501 - line too long (82 characters)
E501
E501,
exclude = .git,__pycache__
max-complexity = 10