Open
Description
I would assume that a cond
-block should be indended by one level when used within a with/1
, but it seems to be on the same line as the content on the left side of the arrow.
Current:
with(
foo <-
cond do
bar ->
bar
baz ->
baz
end,
do: :ok
)
Expected:
with(
foo <-
cond do
bar ->
bar
baz ->
baz
end,
do: :ok
)
I can provide a failing unit test if others agree that my expected indentation in fact should be the expected indentation.