flake8: enable H201, H202, H802

Change-Id: I845720fd642c14fc021bd59809327eee97d43156
This commit is contained in:
Dolph Mathews
2013-08-01 17:17:19 -05:00
committed by Morgan Fainberg
parent 8429623b27
commit d27e5c0196

View File

@@ -31,12 +31,9 @@ downloadcache = ~/cache/pip
# F821: undefined name
# F841: local variable is assigned to but never used
# H102: missing copyright header
# H201: no 'except:' at least use 'except Exception:'
# H202: assertRaises Exception too broad
# H302: import only modules
# H304: no relative imports
# H404: multi line docstring should start with a summary
# H802: git commit title
ignore = F811,F821,F841,H102,H201,H202,H302,H304,H404,H802
ignore = F811,F821,F841,H102,H302,H304,H404
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build