Move ignored warnings into setup.cfg

This commit is contained in:
Markus Unterwaditzer 2015-02-23 14:31:35 +01:00
parent 0087f191dc
commit 665b0cefaf
2 changed files with 5 additions and 2 deletions

View file

@ -8,8 +8,7 @@ install-style:
pip install flake8 flake8-import-order pip install flake8 flake8-import-order
style: style:
flake8 \ flake8
--ignore=W503 # Line break before operator
! grep -ri syncroniz */* ! grep -ri syncroniz */*
install-docs: install-docs:

View file

@ -3,3 +3,7 @@ universal = 1
[pytest] [pytest]
norecursedirs = tests/storage/dav/servers/* norecursedirs = tests/storage/dav/servers/*
[flake8]
# W503: Line break before operator
ignore = W503