Auto-formatter for Elixir based on the prettypr library from the OTP distribution.
If available in Hex, the package can be installed as:
- Add
exfmt
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:exfmt, "~> 0.1.0"}]
end
```
- Ensure
exfmt
is started before your application:
```elixir
def application do
[applications: [:exfmt]]
end
```