-
Notifications
You must be signed in to change notification settings - Fork 130
/
Copy pathrebar.config
36 lines (26 loc) · 904 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
27
28
29
30
31
32
33
34
{minimum_otp_vsn, "22.0"}.
{project_plugins, [rebar3_hex]}.
{erl_opts, [warnings_as_errors,
debug_info,
warn_untyped_record]}.
{deps, [{getopt, {git, "https://github.com/martinsumner/getopt.git", {branch, "develop-3.0-otp24"}}}]}.
{escript_emu_args, "%%! -escript main cuttlefish_escript +S 1 +A 0\n"}.
{escript_incl_apps, [getopt, cuttlefish]}.
{escript_main_app, cuttlefish}.
{provider_hooks, [{post, [{compile, {default, escriptize}}]}]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{eunit_opts, [verbose]}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{cover_export_enabled, true}.
{profiles, [
{gha, [{erl_opts, [{d, 'GITHUBEXCLUDE'}]}]},
{dev, [{deps, [neotoma]}, {plugins, [rebar3_neotoma_plugin]}]},
{test, [{deps, [bbmustache]}]}
]}.