From 7f90eb9090715d512c81b8c0f4de22b04181f78a Mon Sep 17 00:00:00 2001 From: Hans Chan Date: Thu, 15 Jul 2021 14:05:05 +0800 Subject: [PATCH] fix: markdown-link-check with local address --- mlc_config.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mlc_config.json diff --git a/mlc_config.json b/mlc_config.json new file mode 100644 index 0000000..cf691cb --- /dev/null +++ b/mlc_config.json @@ -0,0 +1,13 @@ +{ + "ignorePatterns": [ + { + "pattern": "^https?://0.0.0.0:\\d+" + }, + { + "pattern": "^https?://127.0.0.1:\\d+" + }, + { + "pattern": "^https?://localhost:\\d+" + } + ] +}