flake8: enable H201, H202, H802
Change-Id: I845720fd642c14fc021bd59809327eee97d43156
This commit is contained in:

committed by
Morgan Fainberg

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