forked from mworrell/sidejob
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrebar.config
43 lines (37 loc) · 843 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
37
38
39
40
41
42
43
{erl_opts, [
debug_info,
warn_untyped_records
]
}.
{deps, []}.
{cover_enabled, true}.
{eunit_opts, [verbose]}.
{edoc_opts, [{preprocess, true}]}.
{xref_checks, [undefined_function_calls]}.
{project_plugins, [rebar3_ex_doc]}.
{hex, [{doc, ex_doc}]}.
{ex_doc, [
{source_url, <<"https://github.com/erlangpack/sidejob">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}
]}.
{profiles, [
{test, [
{erl_opts, [debug_info, warn_untyped_records]},
{xref_checks, [
undefined_function_calls,
locals_not_used,
deprecated_function_calls
]},
{xref_ignores, [
]},
{dialyzer, [
{warnings, [
no_return
]},
{plt_extra_apps, [
eunit
]}
]}
]}
]}.