Merge "Enable PEP8 extensions"

This commit is contained in:
Zuul 2019-09-21 09:11:13 +00:00 committed by Gerrit Code Review
commit daf9268911

View File

@ -74,8 +74,11 @@ commands = pylint -j0 -E --rcfile=.pylintrc -e W,E tobiko
[flake8]
# 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
# H204: Use assert(Not)Equal to check for equality
# H205: Use assert(Greater|Less)(Equal) for comparison
# H904: Delay string interpolations at logging calls.
enable-extensions = H106,H203,H204,H205,H904
show-source = true
exclude = ./.*,build,dist,doc,*egg*,releasenotes
import-order-style = pep8