-
Notifications
You must be signed in to change notification settings - Fork 13
/
rebar.config
42 lines (36 loc) · 1014 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
{project_plugins, [rebar3_ex_doc, rebar3_hex, covertool, rebar3_hank]}.
{xref_checks, [
undefined_function_calls,
undefined_functions,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{dialyzer, [
{warnings, [
error_handling,
unmatched_returns,
no_unknown
]}
]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{ex_doc, [
{extras, [
{'CHANGELOG.md', #{title => <<"Changelog">>}},
{'README.md', #{title => <<"Overview">>}},
{'LICENSE.md', #{title => <<"License">>}}
]},
{main, <<"readme">>},
{homepage_url, <<"https://github.com/starbelly/rebar3_ex_doc">>},
{source_url, <<"https://github.com/starbelly/rebar3_ex_doc">>},
{assets, <<"assets">>},
{api_reference, false},
{with_mermaid, true},
{skip_undefined_reference_warnings_on, ["README.md"]}
]}.
{profiles, [
{test, [
{erl_opts, [nowarn_export_all]}
]}
]}.
{alias, [{test, [{ct, "--cover"}, {cover, "-v"}]}]}.