From b0a56ddd252670dadb2c5e3eb0b03bfc7f93623d Mon Sep 17 00:00:00 2001 From: Eric Harney Date: Wed, 20 Feb 2019 15:09:32 -0500 Subject: [PATCH] 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 --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c89569958ff..5d57163e9c8 100644 --- a/tox.ini +++ b/tox.ini @@ -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