v1
& shellcheck to 0.11.0
.
Includes other cherry-picked lint-related changes.
v1
and fix typos
#33125
v1
& shellcheck to 0.11.0
.
Includes other cherry-picked lint-related changes.
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
For details see: https://corecheck.dev/bitcoin/bitcoin/pulls/33125.
See the guideline for information on the review process.
Type | Reviewers |
---|---|
ACK | maflcko |
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update.
No conflicts as of last run.
687@@ -688,6 +688,7 @@ fn lint_doc() -> LintResult {
688 fn lint_markdown() -> LintResult {
689 let bin_name = "mlc";
690 let mut md_ignore_paths = get_subtrees();
691+ md_ignore_paths.push("./depends/work/");
Yes, the --gitignore
flag is slightly buggy. I have fix this (and speeded up the entire run) by ignoring all files in ignore directores in this patch: https://github.com/becheran/mlc/compare/master...willcl-ark:mlc:ignore-dirs-find
Running that branch, with a dirty depends dir fixes that issue for me, although I still see one incorrect “error”:
0Result (1871 links):
1
2OK 458
3Skipped 1057
4Warnings 355
5Errors 1
6
7
8The following links could not be resolved:
9
10./src/secp256k1/doc/release-process.md (37, 12) => /tools/check-abi.sh
Where the issue is that the markdown is correct, but mlc
does not understand this is a subtree. I suppose we should explicitly ignore our subtrees too then…
I suppose we should explicitly ignore our subtrees too then…
Aren’t we already with let mut md_ignore_paths = get_subtrees();
?
fanquake
DrahtBot
maflcko
willcl-ark
Labels
Tests