From 949da427bf267c6caaa4c0f9e70ce9b937a8436c Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 2 Mar 2026 20:28:25 -0500 Subject: [PATCH] ci: format --- scripts/gen-colors.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/gen-colors.lua b/scripts/gen-colors.lua index 8895e81..f26c28c 100644 --- a/scripts/gen-colors.lua +++ b/scripts/gen-colors.lua @@ -30,10 +30,10 @@ for name in pairs(colors) do end table.sort(names) -io.write("---@type table\n") -io.write("local M = {\n") +io.write('---@type table\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')