Closed theKBro closed 4 years ago
Please provide more detail.
with
keep_simple_block_one_line: false
in version 1.2.4 its formatting the code like this which is desired format:
local test = true
if test == true then
test = false
end
in version 1.3.2 - 1.3.6 this is the result:
local test = true
if test == true then test = false end
It looks like some version changed it to keep_simple_control_block_one_line
.
thanks a lot!
keep_simple_function_one_line: false
keep_simple_control_block_one_line: false
solved the problem
working in version 1.2.4, broken afterwards