Trailing commas + mix format

What do you think about adding tabular code formatting?

And what do you think about making the formatter bringing all clauses to a single line when possible, eg here when the inspect is removed:

case number do
  1 ->
    :one

  2 ->
    :two

  3 ->
    :three

  number ->
    IO.inspect(number)
    :very_big
end
3 Likes