CI: bashate warns lines>80 and forbids >120 74/67674/7
authorGuillaume Lambert <guillaume.lambert@orange.com>
Tue, 11 May 2021 16:30:51 +0000 (18:30 +0200)
committerGuillaume Lambert <guillaume.lambert@orange.com>
Wed, 12 May 2021 08:50:41 +0000 (08:50 +0000)
Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com>
Change-Id: Ib981e33c31c704ef3e8fb434f8766b0e217b2b1d

tox.ini

diff --git a/tox.ini b/tox.ini
index 7c63f08..470631c 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -81,9 +81,15 @@ commands =
 basepython = python3
 deps =
     bashate
-whitelist_externals = sh
-                      find
+whitelist_externals = find
+                      sh
+setenv =
+    RULES_IGNORED = E001,E002,E003,E004,E005,E007,E008,E009,E010,E011,E012,E013,E014,E015,E016,E017,E018,E019,E020,E021,E022,E023,E024,E025,E026,E027,E028,E029,E030,E031,E032,E033,E034,E035,E036,E037,E038,E039,E040,E041,E042,E043,E044
+#RULES_IGNORED = `seq -s',E' -w 0 100| cut -d, -f2-6,8-45)`
 commands =
+    # forbid lines > 120 char
+    sh -c "find . -not -path '*/\.*' -name '*.sh' -exec bashate -e E006 -i $RULES_IGNORED --max-line-length 120 \{\} +"
+    # perform bashate and warn lines > 80 char
     find . -not -path '*/\.*' -name *.sh -exec bashate  \{\} +
     #The option --max-line-length 80 is used by default.