adobe/elixir-styler

`with x = y, a = b do ..` doesn't rewrite to standard code

novaugust opened this issue · 0 comments

title sums it up!

with x = y, a = b do
  z
else
 _ -> whatever
end

should become

x = y
a = b
z