We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With mix format now being a thing we can simplify a lot of our indent code. For example, floating pipelines were previously a bit of a hassle
mix format
[h | t] = "a,b,c,d" |> String.split(",") |> Enum.reverse()
instead of
[ h | t ] = "a,b,c,d" |> String.split(",") |> Enum.reverse
The text was updated successfully, but these errors were encountered:
cc: #434
Sorry, something went wrong.
Closing - I don't care how we handle stuff outside of "mix format"
No branches or pull requests
With
mix format
now being a thing we can simplify a lot of our indent code. For example, floating pipelines were previously a bit of a hassleinstead of
The text was updated successfully, but these errors were encountered: