From f5b25c53e180a70998c832c693c1671b0329f79e Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sun, 12 Apr 2026 00:06:06 +1000 Subject: [PATCH] Fix Super-Linter markdown lint Disable MD059 rule in markdown-lint configuration --- .github/linters/.markdown-lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/linters/.markdown-lint.yml b/.github/linters/.markdown-lint.yml index 913b6245..ac96f485 100644 --- a/.github/linters/.markdown-lint.yml +++ b/.github/linters/.markdown-lint.yml @@ -1,5 +1,4 @@ # https://github.com/DavidAnson/markdownlint#rules--aliases -# markdownlint -c .github/linters/.markdown-lint.yml . # MD001/heading-increment/header-increment Heading levels should only increment by one level at a time MD001: false @@ -21,3 +20,6 @@ MD040: false # MD041/first-line-heading/first-line-h1 First line in a file should be a top-level heading MD041: false + +# MD059/descriptive-link-text Link text should be descriptive +MD059: false