jungsoft/elixir-style-guide

Breaking lines for pipes

Opened this issue · 0 comments

Prefer

a
|> b()
|> c()

instead of

a |> b() |> c()