From fe4913ff55e71e8735aea5a09628d6e67fcf5a65 Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Tue, 15 Mar 2022 19:39:43 +0100 Subject: [PATCH] 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 --- mlc_config.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mlc_config.json diff --git a/mlc_config.json b/mlc_config.json new file mode 100644 index 000000000..e81a08418 --- /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" + } + ] +}