From 3be0e6b24f1f74cb427b1921f7bfd1302a6dab2d Mon Sep 17 00:00:00 2001 From: Hoshiumi Arata Date: Wed, 13 Nov 2024 20:45:28 +0900 Subject: [PATCH] Update mlc_config.json to ignore mailto links in linting --- .github/linters/mlc_config.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/linters/mlc_config.json b/.github/linters/mlc_config.json index ceda39d89..f78328a91 100644 --- a/.github/linters/mlc_config.json +++ b/.github/linters/mlc_config.json @@ -1,7 +1,10 @@ { "ignorePatterns": [ { - "pattern": "^https://github.com/mruby/mruby/commit/.*" + "pattern": "^https://github.com/mruby/mruby/commit/" + }, + { + "pattern": "^mailto:" } ] }