From a88f49e8ad38ecbbf2209b859c264face5a4512d Mon Sep 17 00:00:00 2001
From: Miguel Prada <miguel.prada@tecnalia.com>
Date: Tue, 27 Nov 2018 10:27:32 +0100
Subject: [PATCH] Disable the line length limit for Markdown syntax check job

---
 .gitlab-industrial-ci-kinetic-with-rosinstall.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitlab-industrial-ci-kinetic-with-rosinstall.yml b/.gitlab-industrial-ci-kinetic-with-rosinstall.yml
index 8d2259e..a0cbdfc 100644
--- a/.gitlab-industrial-ci-kinetic-with-rosinstall.yml
+++ b/.gitlab-industrial-ci-kinetic-with-rosinstall.yml
@@ -53,10 +53,13 @@ bash_syntax:
 ##########################################################
 ## Check for errors in markdown files
 ## Uses https://github.com/cytopia/awesome-ci
+## Disables the line length rule with --custom="-r ..."
+## See other rules that can be configured in
+## https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md
 ##########################################################
 markdown_syntax:
   stage: postcheck
-  script: docker run -v ${PWD}:/ac cytopia/awesome-ci syntax-markdown --path=/ac --extension=md --ignore=.ci_config
+  script: docker run -v ${PWD}:/ac cytopia/awesome-ci syntax-markdown --path=/ac --extension=md --ignore=.ci_config --custom="-r ~MD013"
   allow_failure: yes
   when: always
 
-- 
GitLab