forked from WhatsApp/erlfmt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
44 lines (33 loc) · 779 Bytes
/
rebar.config
File metadata and controls
44 lines (33 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{erl_opts, [debug_info]}.
{deps, []}.
{escript_incl_apps, [erlfmt, getopt]}.
{escript_main_app, erlfmt}.
{escript_name, erlfmt}.
{escript_emu_args,
"%%! +sbtu +A0 -noinput -noshell -mode minimal -escript main erlfmt\n"}.
{minimum_otp_vsn, "21"}.
{erlc_compiler, [{recursive, false}]}.
{provider_hooks, [
{pre, [
{ct, escriptize}
]}
]}.
{dialyzer, [
{exclude_mods, [rebar3_fmt_prv]},
{warnings, [unknown]}
]}.
{profiles, [
{release, [
{deps, [getopt]},
{erl_opts, [no_debug_info, deterministic]}
]},
{test, [
{deps, [getopt]}
]}
]}.
{erlfmt, [
write,
{print_width, 80},
{files, ["{src,include,test}/*.{hrl,erl,app.src}", "rebar.config"]},
{exclude_files, ["src/erlfmt_parse.erl"]}
]}.