We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c37dc6 commit 5f9845cCopy full SHA for 5f9845c
1 file changed
Taskfile.yml
@@ -194,7 +194,7 @@ tasks:
194
} | xargs -0 poetry run rumdl --config .markdownlint.jsonc check --fix
195
196
check:rumdl:
197
- desc: run rumdl (md-linter) for style issues
+ desc: run rumdl (md-linter) for style issues without failing the check stage
198
cmds:
199
- mkdir -p ./dist
200
- rm -f ./dist/md-lint-issues.xml
@@ -213,4 +213,7 @@ tasks:
213
214
# no recursion (top-level only)
215
find . -maxdepth 1 -type f -name '*.md' -print0
216
- } | xargs -0 poetry run rumdl --config .markdownlint.jsonc check
+ } | xargs -0 poetry run rumdl --config .markdownlint.jsonc check || {
217
+ echo "rumdl reported markdown style issues; continuing without failing the check stage."
218
+ true
219
+ }
0 commit comments