-
Notifications
You must be signed in to change notification settings - Fork 14
/
rebar.config
36 lines (31 loc) · 940 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
35
36
{erl_opts, [debug_info, warn_untyped_record, warnings_as_errors]}.
{cover_export_enabled, true}.
{cover_enabled, true}.
{deps, [
{erlang_tc, ".*", {git, "https://github.com/helium/erlang-tc.git", {branch, "main"}}},
{erasure, {git, "https://github.com/helium/erlang-erasure.git", {branch, "master"}}},
{merkerl, "1.0.1"}
]}.
{plugins, [
{rebar3_eqc, "1.3.0"},
pc
]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{dialyzer, [
{warnings, [unknown]},
{plt_apps, all_deps}
]}.
{profiles, [
{test, [
{erl_opts, [{parse_transform, lager_transform}]},
{deps, [
{relcast, {git, "https://github.com/helium/relcast.git", {branch, "master"}}}
]}
]}
]}.