From cad224bb07b4e2d72d0779923b15c3571efc9e9a Mon Sep 17 00:00:00 2001 From: Ishaan Desai Date: Wed, 10 Apr 2024 13:30:40 +0200 Subject: [PATCH] Add .html pattern to ignore in markdown link check --- .markdown-link-check-config.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.markdown-link-check-config.json b/.markdown-link-check-config.json index 3fff32c2..b539fcdd 100644 --- a/.markdown-link-check-config.json +++ b/.markdown-link-check-config.json @@ -1,3 +1,8 @@ { - "aliveStatusCodes": [429, 200] -} \ No newline at end of file + "aliveStatusCodes": [429, 200], + "ignorePatterns": [ + { + "pattern": "*.html" + } + ] +}