Merge "Enable some off-by-default checks"

This commit is contained in:
Jenkins 2017-07-20 19:22:37 +00:00 committed by Gerrit Code Review
commit 757bb793a8
1 changed files with 4 additions and 0 deletions

View File

@ -74,4 +74,8 @@ commands =
# F821: undefined name
ignore = F821
builtins = _
# [H106] Don't 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,H904
exclude = .venv,.tox,dist,doc,*egg