Ignore E006 bashate rule
[kuberef.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 4c9b4bd..cf327ca 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -10,8 +10,13 @@ passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
 deps =
    {env:BASHATE_INSTALL_PATH:bashate}
    yamllint
+   rstcheck
 whitelist_externals = bash
 commands = bash -c "find {toxinidir} \
    -not -path {toxinidir}/.tox/\* \
-   -name \*.sh | xargs bashate -v"
+# E006 check for lines longer than 79 columns
+   -name \*.sh | xargs bashate -v -iE006"
    bash -c "yamllint {toxinidir}"
+   bash -c "find {toxinidir} \
+   -not -path {toxinidir}/.tox/\* \
+   -name \*.rst | xargs rstcheck"