From f7686e1732be9ca0f9ead89b22346ba5b472fb61 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Thu, 7 Nov 2024 14:50:45 +0100 Subject: [PATCH] ci: remove markdown-link-check configuration (#1300) --- md-linkcheck.json | 16 ---------------- package.json | 2 +- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 md-linkcheck.json diff --git a/md-linkcheck.json b/md-linkcheck.json deleted file mode 100644 index a4cc4b443..000000000 --- a/md-linkcheck.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "httpHeaders": [ - { - "urls": [ - "https://github.com/", - "https://guides.github.com/", - "https://docs.github.com/", - "https://help.github.com/", - "https://support.github.com" - ], - "headers": { - "Accept-Encoding": "zstd, br, gzip, deflate" - } - } - ] -} diff --git a/package.json b/package.json index 4476ba26e..e6e6057e9 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "test": "echo \"There are no tests :(\"", "build": "ncc build -o dist index.js", "format": "prettier --write index.js src/ping.js", - "check:markdown": "find *.md docs/*.md -print0 | xargs -0 -n1 markdown-link-check -c md-linkcheck.json", + "check:markdown": "find *.md docs/*.md -print0 | xargs -0 -n1 markdown-link-check", "update:cypress": "./scripts/update-cypress-latest.sh", "prepare": "husky" },