ci: format
Some checks are pending
quality / changes (push) Waiting to run
quality / Lua Format Check (push) Blocked by required conditions
quality / Lua Lint Check (push) Blocked by required conditions
quality / Lua Type Check (push) Blocked by required conditions
quality / Markdown Format Check (push) Blocked by required conditions
quality / Mapping Sync Check (push) Waiting to run

This commit is contained in:
Barrett Ruth 2026-03-02 20:28:25 -05:00
parent e9a1612365
commit 949da427bf
No known key found for this signature in database
GPG key ID: A6C96C9349D2FC81

View file

@ -30,10 +30,10 @@ for name in pairs(colors) do
end
table.sort(names)
io.write("---@type table<string, { [1]: string, [2]: integer }>\n")
io.write("local M = {\n")
io.write('---@type table<string, { [1]: string, [2]: integer }>\n')
io.write('local M = {\n')
for _, name in ipairs(names) do
local c = colors[name]
io.write(string.format(" ['%s'] = { '%s', %d },\n", name, c[1], c[2]))
end
io.write("}\n\nreturn M\n")
io.write('}\n\nreturn M\n')