-
Notifications
You must be signed in to change notification settings - Fork 6
/
rebar.config
48 lines (42 loc) · 936 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
{erl_opts, [
{platform_define, "^(19|2)", rand_only},
{platform_define, "^(R|1|20)", fun_stacktrace}
]}.
{xref_checks, [undefined_function_calls,
locals_not_used,
deprecated_function_calls]}.
{edoc_opts, [
{preprocess, true}, {stylesheet, "style.css"}
]}.
{profiles, [
{edoc_private, [
{edoc_opts, [
{private, true}
]}
]},
{test, [
{dialyzer, [
{warnings, [
no_return
]}
]},
{plugins, [
rebar3_proper
]},
{deps, [{proper, "1.4.0"}]}
]}
]}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/zotonic/depcache"},
{assets, "assets"},
{api_reference, true}
]}.