Enable PEP8 extensions

Change-Id: Ic5fcd00ae8f0c773a285216808ae02e01f1f79cc
This commit is contained in:
Federico Ressi 2019-09-19 11:59:51 +02:00
parent 0fdbbd7553
commit b534607dde
1 changed files with 5 additions and 2 deletions

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