-
Notifications
You must be signed in to change notification settings - Fork 2
/
rebar.config
65 lines (55 loc) · 1.21 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
63
64
{require_min_otp_vsn, "18"}.
{erl_opts, [
debug_info,
{platform_define, "^[0-9]+", namespaced_dicts},
{platform_define, "^(19|2)", rand_only},
{platform_define, "^(R|1|20)", fun_stacktrace}
]
}.
{xref_checks, [
undefined_function_calls,
locals_not_used,
deprecated_function_calls
]}.
{xref_ignores, [
{dispatch_compiler, compile, 2},
{dispatch_compiler, compile_load, 2},
{dispatch_compiler, match, 3},
{dispatch_compiler, runtime_bind, 3}
]}.
{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"}},
{"CHANGELOG.md", #{title => "Changelog"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{source_url, "https://github.com/zotonic/dispatch_compiler"},
{assets, "assets"},
{api_reference, true}
]}.