check sport for odd puncuation

This commit is contained in:
arch0345 2022-04-17 22:40:57 -07:00
parent d308999fa5
commit 538db72798

View file

@ -663,7 +663,7 @@ function checkItems(t) {
}
// Warn if OSM tags contain odd punctuation or spacing..
['beauty', 'cuisine', 'flush:disposal', 'gambling', 'government', 'training', 'vending'].forEach(osmkey => {
['beauty', 'cuisine', 'flush:disposal', 'gambling', 'government', 'sport', 'training', 'vending'].forEach(osmkey => {
const val = tags[osmkey];
if (val && oddChars.test(val)) {
warnFormatTag.push([display(item), `${osmkey} = ${val}`]);