LuaFormatter
LuaFormatter copied to clipboard
Spaces inside expression parens
Current:
function PosToAbsolute( x, y, tileSize )
return (x - 1) * tileSize, (y - 1) * tileSize
end
Expected:
function PosToAbsolute( x, y, tileSize )
return ( x - 1 ) * tileSize, ( y - 1 ) * tileSize
end
It would be nice to have such option.