From 8fb9efc2a7de10b821a1646378399e32fa9d09bd Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Wed, 19 Aug 2020 14:12:28 -0400 Subject: [PATCH] Ignore E006 bashate rule The E006 bashate rule enforces to use less than 80 characters per line. Even when this is a good practice to be enforced most of the time makes development process harder so we can skip it for now. Signed-off-by: Victor Morales Change-Id: Id0468b707bda01d719af36c57c6d1ce54246dae1 --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8c96a7d..cf327ca 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,8 @@ deps = 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/\* \ -- 2.16.6