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] https://opendev.org/openstack/cinder/commit/b0a56ddd252670dadb2c5e3eb0b03bfc7f93623d
Change-Id: I9a7749288706c8b326c1acd0cef6edd5ea91503e
Rajat Dhasmana
5 years ago
| 25 | 25 | # E123, E125 skipped as they are invalid PEP-8. |
| 26 | 26 | # W503 line break before binary operator |
| 27 | 27 | # W504 line break after binary operator |
| 28 | # H101 include name with TODO | |
| 29 | # reason: no real benefit | |
| 28 | 30 | show-source = True |
| 29 | ignore = E123,E125,W503,W504 | |
| 31 | ignore = E123,E125,W503,W504,H101 | |
| 30 | 32 | builtins = _ |
| 31 | 33 | exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build |