-
Notifications
You must be signed in to change notification settings - Fork 5
/
rebar.config
62 lines (54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
%%-*- mode: erlang -*-
{minimum_otp_vsn, "23"}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{deps, [
{zotonic_stdlib, "~> 1.6"},
{cowboy, "2.9.0"}
]}.
{profiles, [
{test, [
{xref_checks, [
undefined_function_calls,
locals_not_used,
deprecated_function_calls
]},
{xref_ignores, [
]},
{plugins, [
rebar3_proper
]},
{deps, [{proper,"1.4.0"}]}
]},
{edoc_private, [
{edoc_opts, [
{private, true}
]}
]},
{check, [
{dialyzer, [
{warnings, [
no_return
]}
]},
{erl_opts, [
debug_info
]}
]
}
]}.
{edoc_opts, [
{preprocess, true}, {stylesheet, "style.css"}
]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/zotonic/cowmachine"},
{assets, "assets"},
{api_reference, true}
]}.