Open
Description
This
function return_blah(; kwargs...)
return Blah(;
short_int = 1,
looooooooooooong_int = 2,
named_tuple = (
inner1 = 3,
inner2 = 4
),
kwargs...,
)
end
gets formatted to this
function return_blah(; kwargs...)
return Blah(;
short_int = 1,
looooooooooooong_int = 2,
named_tuple = (
inner1 = 3,
inner2 = 4
),
kwargs...,
)
end
which has obviously incorrect indentation for inner1
and inner2
. When I don't line up the equal symbols like this, though, things don't get reformatted:
function return_blah(; kwargs...)
return Blah(;
short_int = 1,
looooooooooooong_int = 2,
named_tuple = (
inner1 = 3,
inner2 = 4,
),
kwargs...,
)
end
This is all using format
with the default options. It's been this way pre- and post-v.2.0
Metadata
Metadata
Assignees
Labels
No labels