freedom_formatter
freedom_formatter copied to clipboard
A fork of Elixir's code formatter, with added freedom.
I love this library! Didn't realize how annoying the lack of trailing commas was until I installed this and got to have them again. However one issue. I have a...
By default ElixirLS will run with `MIX_ENV=test`. This means that if freedom_formatter is only enabled in the dev env that a user of VSCode with the ElixirLS extension will get...
11915 was fixed in 1.14.0 so users that are running 1.14.0 or greater do not need to worry about it.
Hi there! Thanks for the great library. We've used it happily at Felt for a couple years now. ☺️ I'm running into an issue with Elixir 1.17, where I have...
The formatter is transforming this: ```elixir @spec reduce_ok(Enumerable.t(), term, (term, term -> result)) :: result ``` into this: ```elixir @spec reduce_ok(Enumerable.t(), term, [->(term, term, result)]) :: result ``` Which is...
Test illustrating #9 .