diff options
author | Victor Morales <v.morales@samsung.com> | 2020-08-19 14:12:28 -0400 |
---|---|---|
committer | Victor Morales <v.morales@samsung.com> | 2020-08-19 14:12:28 -0400 |
commit | 8fb9efc2a7de10b821a1646378399e32fa9d09bd (patch) | |
tree | d9f692eadcf681c022e58f852d1e8f117a860a20 /tox.ini | |
parent | 90ff3b4def93e228423f515a6e98466a5cd78727 (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
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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/\* \ |