Merge "[SEBA-459]"
diff --git a/jjb/shell/ansiblelint.sh b/jjb/shell/ansiblelint.sh
index f97d186..930c09f 100755
--- a/jjb/shell/ansiblelint.sh
+++ b/jjb/shell/ansiblelint.sh
@@ -30,7 +30,9 @@
 while IFS= read -r -d '' yf
 do
   echo "==> CHECKING: ${yf}"
-  ansible-lint -p "${yf}"
+  # Ignore line length limit (E204) as it can't (as of v4.0.1) be
+  # overridden with the skip_ansible_lint tag
+  ansible-lint -x 204 -p "${yf}"
   rc=$?
   if [[ $rc != 0 ]]; then
     echo "==> LINTING FAIL: ${yf}"