-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathrebar.config
28 lines (21 loc) · 1 KB
/
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
27
28
{erl_opts, [debug_info]}.
{deps, [{cf_client, {git, "https://github.com/joergen7/cf_client.git", {branch, "master"}}},
{cf_worker, {git, "https://github.com/joergen7/cf_worker.git", {branch, "master"}}},
{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, [cf_client, cf_worker, cre, effi, gen_pnet, getopt,
jsone, lib_combin, lib_conf]}.
{escript_name, "cfl"}.
{profiles,
[{test, [{cover_enabled, true}]}]}.
{dialyzer, [{warnings, [unmatched_returns,
error_handling,
underspecs]},
{plt_extra_apps, [cf_client, cf_worker, cre, getopt]}]}.
{xref_checks, [undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions]}.
{project_plugins, [rebar3_efmt]}.