StyLua
StyLua copied to clipboard
Semicolon gets removed when using Luau's compound assignment operators, leading to ambiguous syntax
local function foo()
return { b = "foo" }
end
local a = foo();
(a :: any).b ..= "bar"
Trying to use a -- stylua: ignore comment here does nothing.