summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Morales <v.morales@samsung.com>2020-08-19 14:12:28 -0400
committerVictor Morales <v.morales@samsung.com>2020-08-19 14:12:28 -0400
commit8fb9efc2a7de10b821a1646378399e32fa9d09bd (patch)
treed9f692eadcf681c022e58f852d1e8f117a860a20
parent90ff3b4def93e228423f515a6e98466a5cd78727 (diff)
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 <v.morales@samsung.com> Change-Id: Id0468b707bda01d719af36c57c6d1ce54246dae1
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
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/\* \