lint: bump MLC to v0.19.0

Fixes: #31044

This MLC update includes a change which will ignore files being ignored
by git, and help avoid false-positives when linting in this repo.
This commit is contained in:
willcl-ark 2024-12-05 11:23:08 +00:00
parent e8cc790fe2
commit 811a65d3c6
No known key found for this signature in database
GPG key ID: CE6EC49945C17EA6
2 changed files with 2 additions and 1 deletions

View file

@ -59,7 +59,7 @@ curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_
tar --xz -xf - --directory /tmp/
mv "/tmp/shellcheck-${SHELLCHECK_VERSION}/shellcheck" /usr/bin/
MLC_VERSION=v0.18.0
MLC_VERSION=v0.19.0
MLC_BIN=mlc-x86_64-linux
curl -sL "https://github.com/becheran/mlc/releases/download/${MLC_VERSION}/${MLC_BIN}" -o "/usr/bin/mlc"
chmod +x /usr/bin/mlc

View file

@ -516,6 +516,7 @@ fn lint_markdown() -> LintResult {
"--ignore-path",
md_ignore_path_str.as_str(),
"--gitignore",
"--gituntracked",
"--root-dir",
".",
])