From a32553595c74e9d0a71e490183e9c2b4edbb8916 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Mon, 18 Jan 2021 21:39:06 -0500 Subject: [PATCH] `name:pronunciation` is not namelike --- modules/validations/outdated_tags.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/validations/outdated_tags.js b/modules/validations/outdated_tags.js index 79d03f99e..0cc130e03 100644 --- a/modules/validations/outdated_tags.js +++ b/modules/validations/outdated_tags.js @@ -114,7 +114,7 @@ export function validationOutdatedTags() { // There are a few exceptions to the namelike regexes. // Usually a tag suffix contains a language code like `name:en`, `name:ru` // but we want to exclude things like `operator:type`, `name:etymology`, etc.. - if (/:(colour|type|left|right|etymology|wikipedia)$/.test(k)) return false; + if (/:(colour|type|left|right|etymology|pronunciation|wikipedia)$/.test(k)) return false; return true; });