StyLua icon indicating copy to clipboard operation
StyLua copied to clipboard

Declaring a local variable with the variable name >1 line away causes malformed formatting

Open ok-nick opened this issue 4 years ago • 0 comments

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

ok-nick avatar May 24 '21 01:05 ok-nick