Skip to content

styler's LLM edition

Choose a tag to compare

@novaugust novaugust released this 11 Sep 16:43
· 52 commits to main since this release

Improvements

Rewrite single-clause case statements to be assignments (h/t 馃)

# before
case foo |> Bar.baz() |> Bop.boop() do
  {:ok, widget} ->
    x = y
    wodget(widget)
end

# after
{:ok, widget} = foo |> Bar.baz() |> Bop.boop()
x = y
wodget(widget)