Skip to content

Commit 6a1e613

Browse files
committed
Merge bitcoin/bitcoin#31427: lint: bump MLC to v0.19.0
f6afca4 lint: use clearer wording on error message (willcl-ark) 811a65d lint: bump MLC to v0.19.0 (willcl-ark) Pull request description: 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. Top commit has no ACKs. Tree-SHA512: d3edd0125f719c7a4456f7089e298dc851352a082b8119bbd8d642de518bb193827af9994ba416dd18a6a6f1359ee96122d95a31232da1623c679db39b370370
2 parents 083770a + f6afca4 commit 6a1e613

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ci/lint/04_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_
5959
tar --xz -xf - --directory /tmp/
6060
mv "/tmp/shellcheck-${SHELLCHECK_VERSION}/shellcheck" /usr/bin/
6161

62-
MLC_VERSION=v0.18.0
62+
MLC_VERSION=v0.19.0
6363
MLC_BIN=mlc-x86_64-linux
6464
curl -sL "https://github.com/becheran/mlc/releases/download/${MLC_VERSION}/${MLC_BIN}" -o "/usr/bin/mlc"
6565
chmod +x /usr/bin/mlc

test/lint/test_runner/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,7 @@ fn lint_markdown() -> LintResult {
516516
"--ignore-path",
517517
md_ignore_path_str.as_str(),
518518
"--gitignore",
519+
"--gituntracked",
519520
"--root-dir",
520521
".",
521522
])
@@ -529,7 +530,7 @@ fn lint_markdown() -> LintResult {
529530
r#"
530531
One or more markdown links are broken.
531532
532-
Relative links are preferred (but not required) as jumping to file works natively within Emacs.
533+
Note: relative links are preferred as jump-to-file works natively within Emacs, but they are not required.
533534
534535
Markdown link errors found:
535536
{}

0 commit comments

Comments
 (0)