Disable bashate long line warning

We still have 79 bashate warnings for lines longer than 79 characters.
bashate also warns about here documents, so cutting down on all of
them is not worth it. Let's disable these bashate warnings so that we can
see the real problems.

Warnings disabled are of the form:
[W] E006: Line too long: ...

Change-Id: I3abfae4432f9432af6e0d8b43bfc340673f06802
This commit is contained in:
Andreas Jaeger 2015-12-23 13:38:52 +01:00
parent 1db085d5ec
commit e617d1ffce

View File

@ -2,4 +2,4 @@
ROOT=$(readlink -fn $(dirname $0)/.. ) ROOT=$(readlink -fn $(dirname $0)/.. )
find $ROOT -not -wholename \*.tox/\* -and -not -wholename \*.test/\* \ find $ROOT -not -wholename \*.tox/\* -and -not -wholename \*.test/\* \
-and -name \*.sh -print0 | xargs -0 bashate -v -and -name \*.sh -print0 | xargs -0 bashate -v --ignore E006