Skip to content

Commit a325535

Browse files
committed
name:pronunciation is not namelike
1 parent 74d2825 commit a325535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/validations/outdated_tags.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export function validationOutdatedTags() {
114114
// There are a few exceptions to the namelike regexes.
115115
// Usually a tag suffix contains a language code like `name:en`, `name:ru`
116116
// but we want to exclude things like `operator:type`, `name:etymology`, etc..
117-
if (/:(colour|type|left|right|etymology|wikipedia)$/.test(k)) return false;
117+
if (/:(colour|type|left|right|etymology|pronunciation|wikipedia)$/.test(k)) return false;
118118

119119
return true;
120120
});

0 commit comments

Comments
 (0)