Skip to content
Snippets Groups Projects
Commit a88f49e8 authored by Prada Sarasola, Miguel's avatar Prada Sarasola, Miguel
Browse files

Disable the line length limit for Markdown syntax check job

parent b25416e3
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment