Ignore H101 rule

It doesn't seem to provide any benefit and is also removed from cinder
project.
For detailed reason, please look into the commit message of the cinder
patch[1].

[1] b0a56ddd25

Change-Id: I9a7749288706c8b326c1acd0cef6edd5ea91503e
This commit is contained in:
Rajat Dhasmana 2021-01-29 11:41:02 -05:00
parent 3c96bfb431
commit df4f94711e
1 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,9 @@ commands = {posargs}
# E123, E125 skipped as they are invalid PEP-8.
# W503 line break before binary operator
# W504 line break after binary operator
# H101 include name with TODO
# reason: no real benefit
show-source = True
ignore = E123,E125,W503,W504
ignore = E123,E125,W503,W504,H101
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build