From 412fd64898bdd3919c116692986507c598c75a42 Mon Sep 17 00:00:00 2001 From: yeonjuan Date: Tue, 8 Oct 2019 21:18:31 +0900 Subject: [PATCH] core(seo): support korean in link-text audit --- lighthouse-core/audits/seo/link-text.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lighthouse-core/audits/seo/link-text.js b/lighthouse-core/audits/seo/link-text.js index ddae4abcadc1..0eac2328955d 100644 --- a/lighthouse-core/audits/seo/link-text.js +++ b/lighthouse-core/audits/seo/link-text.js @@ -53,6 +53,16 @@ const BLOCKLIST = new Set([ 'mais informações', 'mais', 'veja mais', + // Korean + '여기', + '여기를 클릭', + '클릭', + '링크', + '자세히', + '자세히 보기', + '계속', + '이동', + '전체 보기', ]); const i18n = require('../../lib/i18n/i18n.js');