1
0
Fork 0

flake8: Move exclusion of versioneer to 'setup.cfg', ignore W504

Signed-off-by: Vasilis Tsiligiannis <acinonyx@openwrt.gr>
merge-requests/323/head
Vasilis Tsiligiannis 2019-01-07 11:13:01 +02:00
parent c2efc8cee2
commit def0457c61
2 changed files with 2 additions and 3 deletions

View File

@ -66,8 +66,8 @@ install_requires =
[flake8]
max-complexity = 23
max-line-length = 99
ignore = F403
exclude = *migrations/*,docs,*decoders/*
ignore = F403,W504
exclude = db/_version.py,db/base/migrations,docs
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the

View File

@ -9,6 +9,5 @@ deps =
flake8
skip_install = True
commands = flake8 \
--exclude 'db/_version.py,db' \
setup.py \
db