diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -26,6 +26,10 @@ commands = python setup.py testr --coverage --testr-args='{posargs}' downloadcache = ~/cache/pip [flake8] -ignore = F,H +# H302 import only modules +# H303 no wildcard import +# H306 imports not in alphabetical orde +# H404 multi line docstring should start with a summary +ignore = F403,F841,F812,F821,H302,H303,H306,H404 show-source = True exclude = .venv,.tox,dist,doc,*egg |