hacking: Ignore H405
This patch proposes to ignore hacking H405, "multi line docstring
summary not separated with an empty line". This arbitrarily enforces
"title" lines for docstring that are more than 1 line, meaning a
simple doctring that needs just 2 lines will either need to be
condensed into a single line, or expanded to include a "title" and a
longer explanation paragraph underneath. This does not appear to bring
much value.
Change-Id: I1978c73ab6eda1dce85c96b612c4c5bff286efc6
diff --git a/tox.ini b/tox.ini
index efdaacc..29ed76c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -347,7 +347,8 @@
# E123 skipped because it is ignored by default in the default pep8
# E129 skipped because it is too limiting when combined with other rules
# W504 skipped because it is overeager and unnecessary
-ignore = E125,E123,E129,W504
+# H405 skipped because it arbitrarily forces doctring "title" lines
+ignore = E125,E123,E129,W504,H405
show-source = True
exclude = .git,.venv,.tox,dist,doc,*egg,build
enable-extensions = H106,H203,H904