mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-24 18:23:26 -03:00
Merge bitcoin/bitcoin#31427: lint: bump MLC to v0.19.0
f6afca46a1
lint: use clearer wording on error message (willcl-ark)811a65d3c6
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
This commit is contained in:
commit
6a1e613e85
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -516,6 +516,7 @@ fn lint_markdown() -> LintResult {
|
|||
"--ignore-path",
|
||||
md_ignore_path_str.as_str(),
|
||||
"--gitignore",
|
||||
"--gituntracked",
|
||||
"--root-dir",
|
||||
".",
|
||||
])
|
||||
|
@ -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:
|
||||
{}
|
||||
|
|
Loading…
Add table
Reference in a new issue