Suppress bashate line length warnings

By default bashate checks for lines longer than 80
characters and issues E006 warnings for these.

Suppress the E006 warnings since we don't enforce
this line length standard in OpenStack shell
scripts so that other warnings will be more evident.

Change-Id: Icdf32cb7e3d810d2f8644674d3516ed808c873a5
This commit is contained in:
Tom Barron 2016-05-28 05:33:48 -04:00
parent 5e83890342
commit d11efa9ca2
1 changed files with 1 additions and 1 deletions

View File

@ -22,4 +22,4 @@ commands = bash -c "find {toxinidir} \
-name functions\* -or \
-wholename \*/lib/\* \
\) \
-print0 | xargs -0 bashate -v"
-print0 | xargs -0 bashate -v -iE006"