From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Tue, 15 Mar 2022 18:39:43 +0000 (+0100) Subject: mlc_config.json: add file to ignore known troublesome URLs X-Git-Tag: curl-7_83_0~141 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fe4913ff55e71e8735aea5a09628d6e67fcf5a65;p=thirdparty%2Fcurl.git mlc_config.json: add file to ignore known troublesome URLs This is the config file for the CI markdown link checker and lets us filter URLs that are known to cause problems. Like https://curl.zuul.vexxhost.dev/ for now. Closes #8597 --- diff --git a/mlc_config.json b/mlc_config.json new file mode 100644 index 0000000000..e81a084188 --- /dev/null +++ b/mlc_config.json @@ -0,0 +1,8 @@ +{ + "_comment": "Config file for linkcheck: If urls have some issues we can not fix on our end past it in here. MLC will ignore this.", + "ignorePatterns": [ + { + "pattern": "^https://curl.zuul.vexxhost.dev" + } + ] +}