Merge "Enable some off-by-default checks"

This commit is contained in:
Zuul 2017-11-26 02:21:34 +00:00 committed by Gerrit Code Review
commit 3720db0ed6
1 changed files with 4 additions and 0 deletions

View File

@ -58,3 +58,7 @@ ignore =
show-source = true
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools,build,example
# H106: Dont put vim configuration in source files
# H203: Use assertIs(Not)None to check for None
# H904: Delay string interpolations at logging calls
enable-extensions=H106,H203,H204,H205,H904