Chore: lint code

This commit is contained in:
Pieter Vander Vennet 2024-10-19 14:48:48 +02:00
parent 40e894df8b
commit 8173fb15b9
7 changed files with 29 additions and 38 deletions

View file

@ -43,12 +43,9 @@ class LuaSnippets {
or.push(new RegexTag(k, v))
})
})
const features = or.map((t) => t.asHumanString(false, false, {}))
const features = or.map((t) => t.asHumanString(false, false, {}))
features.sort()
console.log(
"Polygon features are:",
features
)
console.log("Polygon features are:", features)
return { blacklist: new Or(blacklisted), whitelisted: new Or(or) }
}