plugin-lua
plugin-lua copied to clipboard
Don't break local statement initializer onto next line
current output
local variable =
call_something_that_is_kind_of_long(with_some_long, arguments_that_are_long)
expected output
local variable = call_something_that_is_kind_of_long(
with_some_long,
arguments_that_are_long
)