style: improve codestyle for lua map file (#75)

* Remove spaces around key.
* Add indent for each entry.
This commit is contained in:
Aleksey Imuzov
2024-03-21 09:20:29 +04:00
committed by GitHub
parent ce23245e9c
commit b45c9a9f19

View File

@ -53,7 +53,7 @@ ${iconMap
.split("|")
// remove all * in mappings
.map((app) => app.replace("*", ""))
.map((app) => `[${app}] = "${iconName}",`)
.map((app) => `\t[${app.trim()}] = "${iconName}",`)
.join("\n"),
)
.join("\n")}