Skip to content

Commit fbf82e1

Browse files
committed
style(stylua): fix linter error
1 parent eafa3e1 commit fbf82e1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lua/dashboard/theme/hyper.lua

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,9 @@ local function letter_hotkey(config)
235235
end
236236
end
237237

238-
if shuffle then shuffle_table(unused_keys) end
238+
if shuffle then
239+
shuffle_table(unused_keys)
240+
end
239241

240242
local unused_uppercase_keys = {}
241243
-- A - Z
@@ -245,7 +247,9 @@ local function letter_hotkey(config)
245247
end
246248
end
247249

248-
if shuffle then shuffle_table(unused_uppercase_keys) end
250+
if shuffle then
251+
shuffle_table(unused_uppercase_keys)
252+
end
249253

250254
-- Push shuffled uppercase keys after the lowercase ones
251255
for _, key in pairs(unused_uppercase_keys) do

0 commit comments

Comments
 (0)