-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathrebar.config
60 lines (52 loc) · 1.17 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
%%% -*- mode: erlang; -*-
{erl_opts,
[
debug_info
]
}.
{deps,
[
{cowboy, "2.8.0"},
{ranch, "2.0.0"}
]
}.
{project_plugins, [
rebar3_lint,
rebar3_hank,
rebar3_hex
]}.
{profiles, [
{test, [
{cover_enabled, true},
{cover_opts, [verbose]},
{deps, [
{meck, "0.9.2"}
]}
]}
]}.
{alias, [{test, [xref, dialyzer, lint, hank, ct, cover, edoc]}]}.
{xref_checks,
[
undefined_function_calls
, locals_not_used
, deprecated_function_calls
]
}.
{dialyzer, [ {warnings, [ underspecs
, unmatched_returns
, error_handling
, unknown
]}
, {plt_apps, top_level_deps}
, {plt_extra_apps, []}
, {plt_location, local}
, {base_plt_apps, [erts, stdlib, kernel]}
, {base_plt_location, global}]}.
%% == hank ==
{hank, [
{ignore, [
"example/_build/**",
"example/_checkouts/**",
{"test/trails_SUITE.erl", unnecessary_function_arguments}
]}
]}.