-
Notifications
You must be signed in to change notification settings - Fork 38
/
rebar.config
46 lines (42 loc) · 1.11 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
{erl_first_files, ["src/elli_handler.erl"]}.
{erl_opts, [debug_info,
{i, "include"}]}.
{minimum_otp_vsn, "24"}.
{deps, []}.
{xref_checks, [deprecated_function_calls,undefined_function_calls,locals_not_used]}.
{profiles, [
{docs, [
{deps, [{edown, "0.9.1"}]},
{edoc_opts, [
{preprocess, true},
{def, [
{'EXAMPLE_CONF',"[{callback,elli_example_callback},{callback_args,[]}]"}
]},
{doclet, edown_doclet}
]}
]},
{test, [
{deps, [{hackney, "1.20.1"}]},
{extra_src_dirs, [
{"test", [
{recursive, true}
]}
]},
{cover_enabled, true},
{cover_export_enabled, true},
{cover_excl_mods, [
elli_handler
]},
{covertool, [{coverdata_files, ["ct.coverdata"]}]},
{cover_opts, [verbose]},
{ct_opts, [{ct_hooks, [cth_surefire]}]}
]}
]}.
{shell, [{script_file, "bin/shell.escript"}]}.
{project_plugins, [
{covertool, "2.0.6"},
{rebar3_lint, "3.2.5"}
]}.
{provider_hooks, [{pre, [{eunit, lint}]}]}.
{dialyzer, [{plt_extra_apps, [ssl]}, {warnings, [unknown]}]}.
{post_hooks, [{edoc, "doc/build.sh"}]}.