StyLua
StyLua copied to clipboard
Declaring a local variable with the variable name >1 line away causes malformed formatting
Try formatting this function
local function foo()
local
bar = 'baz'
end
It will result in this
local function foo()
local
bar = 'baz'
end
Where it should result in this
local function foo()
local bar = 'baz'
end