Ignore hacking rule H101

I can't think of any examples when this has proven to
be truly useful.  Many of the entries point to
contributors who are no longer active in the community.

This rule also encourages people writing TODOs to put
their own name, which may needlessly prevent others
from helping fix issues in the code.

Change-Id: I6b749fcc459474eb6ca4ad6331de9138dd702cd0
This commit is contained in:
Eric Harney 2019-02-20 15:09:32 -05:00
parent 7bb05f327a
commit b0a56ddd25
1 changed files with 3 additions and 1 deletions

View File

@ -185,7 +185,9 @@ usedevelop = False
# reason: no agreement on this being universally
# preferable for our code. Disabled to keep checking
# tools from getting in our way with regards to this.
ignore = E251,E402,W503,W504
# H101 include name with TODO
# reason: no real benefit
ignore = E251,E402,W503,W504,H101
# H904 Delay string interpolations at logging calls.
enable-extensions = H106,H203,H904
exclude = .git,.venv,.tox,dist,tools,doc/ext,*egg,build