summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini11
1 files changed, 10 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index f3a2900..5a8b3fd 100644
--- a/tox.ini
+++ b/tox.ini
@@ -40,6 +40,15 @@ downloadcache = ~/cache/pip
# H302 import only modules
# H303 no wildcard import
# H404 multi line docstring should start with a summary
-ignore = F403,F812,F821,H233,H302,H303,H404
+
+# TODO(kragniz) fix these and remove from the ignore list
+
+# E265 block comment should start with '# '
+# H405 multi line docstring summary not separated with an empty line
+# E123 closing bracket does not match indentation of opening bracket's line
+# H238 old style class declaration, use new style (inherit from `object`)
+# E128 continuation line under-indented for visual indent
+
+ignore = F403,F812,F821,H233,H302,H303,H404,E265,H405,E123,H238,E128
show-source = True
exclude = .venv,.tox,dist,*egg,build