-
Notifications
You must be signed in to change notification settings - Fork 20
/
rebar.config
51 lines (45 loc) · 1013 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
44
45
46
47
48
49
50
51
%%% -*- mode: erlang; -*-
{erl_opts,
[
{src_dirs, ["src"]}
]
}.
{deps_dir, "deps"}.
{deps,
[
{cowboy, "1.1.2"},
{ranch, "1.3.2"}
]
}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{profiles, [
{test, [
{deps, [
{katana_test, {git, "https://github.com/inaka/katana-test", {ref, "0.0.5"}}},
{mixer, {git, "https://github.com/inaka/mixer", {ref, "0.1.5"}}},
{meck, "0.8.4"},
{xref_runner, {git, "https://github.com/inaka/xref_runner", {ref, "0.2.6"}}}
]}
]}
]}.
{xref_warnings, true}.
{xref_checks,
[
undefined_function_calls
, locals_not_used
, deprecated_function_calls
, deprecated_functions
]
}.
{dialyzer,
[
{warnings,
[
underspecs
, unmatched_returns
, error_handling
, unknown
]}
, {plt_extra_apps, [cowboy, ranch, cowlib]}
]}.