-
Notifications
You must be signed in to change notification settings - Fork 8
/
rebar.config
39 lines (32 loc) · 1.03 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
{deps, [{accept, "0.3.5"}]}.
{xref_checks, [undefined_function_calls,locals_not_used]}.
{dialyzer, [{base_plt_apps, [elli]}]}.
{profiles, [{test, [{deps, [{elli, "3.2.0"},
{prometheus, "4.4.1"},
{prometheus_process_collector, "1.4.5"}]}]},
{docs, [{deps, [{elli, "3.2.0"},
{edown, "0.8.1"}]}]}
]}.
{edoc_opts, [
{application, elli_prometheus},
{subpackages, false},
{doclet, edown_doclet},
{todo, true},
{doc_path, ["http://raw.github.com/elli-lib/elli/develop/doc",
"http://raw.github.com/deadtrickster/prometheus.erl/master/doc"]},
{source_path, [
"src",
"_build/test/lib/elli",
"_build/docs/lib/prometheus"
]}
]}.
{project_plugins, [
{coveralls, "1.3.0"},
{rebar3_lint, "0.1.7"}
]}.
{provider_hooks, [{pre, [{eunit, lint}]}]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
%% {cover_excl_mods, []}.
{coveralls_coverdata, "_build/test/cover/eunit.coverdata"}.
{coveralls_service_name, "travis-ci"}.