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
This commit is contained in:
Philip H 2022-03-15 19:39:43 +01:00 коммит произвёл Daniel Stenberg
Родитель c652621928
Коммит fe4913ff55
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 8 добавлений и 0 удалений

8
mlc_config.json Normal file
Просмотреть файл

@ -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"
}
]
}