Skip to content
Snippets Groups Projects
Verified Commit 2a2d4874 authored by Lars Bilke's avatar Lars Bilke
Browse files

Splitted lint-docs into run-vale and run-markdownlint.

parent bf526717
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,8 @@ repos: ...@@ -56,7 +56,8 @@ repos:
files: \.(h|cpp)$ files: \.(h|cpp)$
- id: vale - id: vale
name: Check spelling with vale name: Check spelling with vale
entry: bash -c 'if command -v vale &> /dev/null; then vale --minAlertLevel warning; else exit 0; fi' entry: bash -c 'if command -v vale &> /dev/null; then VALE_MIN_ALERT_LEVEL=error scripts/ci/helper/run-vale; else exit 0; fi'
pass_filenames: false
language: system language: system
- repo: https://github.com/igorshubovych/markdownlint-cli - repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.31.1 rev: v0.31.1
......
echo "Lint Markdown"
if command -v markdownlint >/dev/null 2>&1; then
# TODO: 'Documentation/**/*.md'
markdownlint 'web/content/**/*.md' || ((ERROR_RESULTS++))
else
echo "markdownlint is missing, please install it from https://github.com/igorshubovych/markdownlint-cli#installation"
fi
if [ "${ERROR_RESULTS}" -ne 0 ]; then
echo "✖ ${ERROR_RESULTS} markdownlint failed. Review the log carefully to see full listing."
exit 1
else
echo "✔ markdownlint passed"
exit 0
fi
...@@ -30,17 +30,11 @@ fi ...@@ -30,17 +30,11 @@ fi
if [ "${VALE_OUTPUT}" == "json" ]; then if [ "${VALE_OUTPUT}" == "json" ]; then
exit 0 exit 0
fi fi
echo "Lint Markdown"
if command -v markdownlint >/dev/null 2>&1; then
# TODO: 'Documentation/**/*.md'
markdownlint 'web/content/**/*.md' || ((ERROR_RESULTS++))
else
echo "markdownlint is missing, please install it from https://github.com/igorshubovych/markdownlint-cli#installation"
fi
if [ "${ERROR_RESULTS}" -ne 0 ]; then if [ "${ERROR_RESULTS}" -ne 0 ]; then
echo "✖ ${ERROR_RESULTS} lint test(s) failed. Review the log carefully to see full listing." echo "✖ ${ERROR_RESULTS} Vale spell check failed. Review the log carefully to see full listing."
exit 1 exit 1
else else
echo "✔ Linting passed" echo "✔ Vale spell check passed"
exit 0 exit 0
fi fi
...@@ -104,7 +104,7 @@ spell check docs: ...@@ -104,7 +104,7 @@ spell check docs:
variables: variables:
VALE_OUTPUT: json VALE_OUTPUT: json
script: script:
- scripts/ci/helper/lint-docs > vale-report.json - scripts/ci/helper/run-vale > vale-report.json
artifacts: artifacts:
paths: paths:
- vale-report.json - vale-report.json
......
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