Skip to content

Commit

Permalink
Merge bitcoin#31427: lint: bump MLC to v0.19.0
Browse files Browse the repository at this point in the history
f6afca4 lint: use clearer wording on error message (willcl-ark)
811a65d lint: bump MLC to v0.19.0 (willcl-ark)

Pull request description:

  Fixes: bitcoin#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
  • Loading branch information
fanquake committed Dec 5, 2024
2 parents 083770a + f6afca4 commit 6a1e613
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/lint/04_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion test/lint/test_runner/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,7 @@ fn lint_markdown() -> LintResult {
"--ignore-path",
md_ignore_path_str.as_str(),
"--gitignore",
"--gituntracked",
"--root-dir",
".",
])
Expand All @@ -529,7 +530,7 @@ fn lint_markdown() -> LintResult {
r#"
One or more markdown links are broken.
Relative links are preferred (but not required) as jumping to file works natively within Emacs.
Note: relative links are preferred as jump-to-file works natively within Emacs, but they are not required.
Markdown link errors found:
{}
Expand Down

0 comments on commit 6a1e613

Please sign in to comment.