-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrebar.config
26 lines (20 loc) · 921 Bytes
/
rebar.config
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
{erl_opts, [debug_info]}.
{deps, [{cre, {git, "https://github.com/joergen7/cre.git", {branch, "master"}}},
{lib_conf, {git, "https://github.com/joergen7/lib_conf.git", {branch, "master"}}},
{getopt, "1.0.3"}]}.
{escript_incl_apps, [cre, gen_pnet, getopt, jsone, lib_combin, lib_conf]}.
{escript_emu_args, "%%! -escript main cf_client -connect_all false -sname cfl_client\n"}.
{escript_name, "cfl_client"}.
{profiles,
[{test, [{cover_enabled, true},
{deps, [proper]}]}]}.
{dialyzer, [{warnings, [unmatched_returns,
error_handling,
underspecs]},
{plt_extra_apps, [cre, lib_conf, getopt]}]}.
{xref_checks, [undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions]}.
{project_plugins, [rebar3_efmt, rebar3_proper]}.