From 63ec5bed727628faabef0e480c1db92aba87463e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Jan 2022 11:41:32 +0800 Subject: [PATCH] chore: format (#76) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../shipwright/runners/windows_terminal.lua | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/lua/zenbones/shipwright/runners/windows_terminal.lua b/lua/zenbones/shipwright/runners/windows_terminal.lua index 8fa5e62..a7cd844 100644 --- a/lua/zenbones/shipwright/runners/windows_terminal.lua +++ b/lua/zenbones/shipwright/runners/windows_terminal.lua @@ -1,15 +1,9 @@ ---@diagnostic disable: undefined-global -- selene: allow(undefined_variable) -run( - { specs, p, term }, - transform.colorscheme_to_term_colors, - function(colors) - return vim.tbl_extend("keep", colors, { - name = name, - }) - end, - contrib.windows_terminal, - { overwrite, string.format("extras/windows_terminal/%s.json", name) } -) +run({ specs, p, term }, transform.colorscheme_to_term_colors, function(colors) + return vim.tbl_extend("keep", colors, { + name = name, + }) +end, contrib.windows_terminal, { overwrite, string.format("extras/windows_terminal/%s.json", name) }) -- selene: deny(undefined_variable) ---@diagnostic enable: undefined-global