-
Notifications
You must be signed in to change notification settings - Fork 38
/
rebar.config
47 lines (44 loc) · 1.06 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
{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, [
{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"},
{rebar3_ex_doc, "0.2.23"}
]}.
{ex_doc, [
{extras, [
"README.md",
"OVERVIEW.md",
"CHANGELOG.md",
"LICENSE"
]},
{main, "README.md"},
{source_url, "https://github.com/elli-lib/elli"}
]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{dialyzer, [{plt_extra_apps, [ssl]}, {warnings, [unknown]}]}.