efmt

efmt hex.pm version Documentation Actions Status License

An Erlang code formatter.

Features

An Formatting Example

Before

```erlang -module(example). -export( [fac/1] ).

fac(1) -> 1; fac(N) -> N*fac(N-1). ```

After

```erlang -module(example). -export([fac/1]).

fac(1) -> 1; fac(N) -> N * fac(N - 1). ```

Please refer to FORMAT_RULES.md about the formatting style.

Installation

Usage

Editor Integrations

TODO

Comparison with other formatters

erlfmt

Limitations

There are some limitations that are not planned to be addressed in the future: - Only supports UTF-8 files - Doesn't process parse transforms - That is, if a parse transform has introduced custom syntaxes in your Erlang code, efmt could fail