-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
63 lines (55 loc) · 1.68 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
61
62
63
{erl_opts, [ debug_info
, warnings_as_errors
, warn_export_vars
, warn_unused_import
, warn_missing_spec_all
]}.
{deps, [{proper, "1.3.0"}]}.
{shell, [ {apps, [proper_contrib]} ]}.
{plugins, [ rebar3_proper
, coveralls
]}.
{minimum_otp_vsn, "21.0"}.
{profiles, [ { debug
, [ { deps
, [ {redbug, "1.2.1"}
]
}
]
}
, { test
, [ { erl_opts, [ nowarn_export_all
, nowarn_missing_spec_all
]
}
, { deps
, [ {coveralls, "2.0.1"}
, {elvis_core, "0.4.2"}
]
}
, { pre_hooks
, [ { compile
, "erl -pa _build/test/lib/*/ebin -noshell -eval 'init:stop(case elvis_core:rock() of ok -> 0; _ -> 1 end)'"
}
]
}
]
}
]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{coveralls_coverdata, ["_build/test/cover/proper.coverdata"]}.
{coveralls_service_name, "travis-ci"}.
{dialyzer, [ {warnings, [ underspecs
, unknown
]}
, {plt_apps, all_deps}
%% Not sure why `proper` is not recognized as a dep
, {plt_extra_apps, [proper]}
]}.
{xref_checks, [ undefined_function_calls
, undefined_functions
, locals_not_used
, deprecated_function_calls
, deprecated_functions
]}.