From e617d1ffce3fae349a5d9a491fae1f1c80078b34 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 23 Dec 2015 13:38:52 +0100 Subject: [PATCH] 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 --- tools/run-bashate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run-bashate.sh b/tools/run-bashate.sh index 6374fe9b89..66b72b5e5a 100755 --- a/tools/run-bashate.sh +++ b/tools/run-bashate.sh @@ -2,4 +2,4 @@ ROOT=$(readlink -fn $(dirname $0)/.. ) 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