From a2d6dd6581cadb0245a5ea42160cda4fce73f59a Mon Sep 17 00:00:00 2001 From: GrammaTonic Date: Sun, 1 Mar 2026 22:54:11 +0100 Subject: [PATCH] fix: add ignore patterns for localhost and private project URLs Add ignore patterns for localhost URLs (documentation examples not reachable in CI) and GitHub user project board URLs (private/404 in CI). Fixes docs-validation failure on PR #1128. --- .markdown-link-check.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.markdown-link-check.json b/.markdown-link-check.json index 31dc792..3987e07 100644 --- a/.markdown-link-check.json +++ b/.markdown-link-check.json @@ -22,6 +22,12 @@ { "pattern": "^https://github\\.com/.*/wiki/" }, + { + "pattern": "^https://github\\.com/users/.*/projects/" + }, + { + "pattern": "^https?://localhost[:/]" + }, { "pattern": "^#" }