-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrebar.config
More file actions
36 lines (36 loc) · 800 Bytes
/
rebar.config
File metadata and controls
36 lines (36 loc) · 800 Bytes
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
{relx, [
{release, {kaos, "0.1.0"}}
]}.
{dialyzer, [
{plt_extra_apps, [erts, kernel, stdlib]},
{warnings, [unmatched_returns, error_handling]}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{eunit_opts, [verbose]}.
{deps, []}.
{profiles, [
{debug, [
{erl_opts, [debug_info, {d, debug}]}
]},
{examples, [
{extra_src_dirs, ["examples"]}
]},
{allsrc, [
{src_dirs, ["src", "test"]}
]}
]}.
{plugins, [rebar3_ex_doc, rebar3_hex]}.
{ex_doc, [
{extras, [
{"guides/examples.md", #{title => "Examples"}}
]},
{source_url, "https://github.com/EarthCitizen/kaos"},
{main, "kaos"},
{api_reference, false}
]}.
{hex, [{doc, ex_doc}]}.
{alias, [
{test, [clean, eunit, cover]},
{dial, [clean, compile, dialyzer]}
]}.