-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
45 lines (36 loc) · 1.11 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
{minimum_otp_vsn, "24"}.
{erl_opts, [debug_info, warnings_as_errors]}.
{dialyzer, [
% Fixes a bug on 'doctest_eunit':
%
% $ rebar3 dialyzer
% src/doctest_eunit.erl
% Line 36 Column 32: Unknown function rebar3:init_config/0
% Line 49 Column 17: Unknown function rebar_state:command_parsed_args/1
% Line 50 Column 17: Unknown function rebar_state:get/3
%
{warnings, [no_unknown]},
{plt_extra_apps, [syntax_tools, compiler, eunit]}
]}.
{deps, []}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{ex_doc, [
{extras, [
{'README.md', #{title => <<"Overview">>}},
{'LICENSE.md', #{title => <<"License">>}}
]},
{main, <<"README.md">>},
{homepage_url, <<"https://github.com/williamthome/doctest">>},
{source_url, <<"https://github.com/williamthome/doctest">>}
]}.
{profiles, [
{test, [
{erl_opts, [{extra_src_dirs, ["test/support"]}]}
]}
]}.
{alias, [
{test, [ct, eunit]},
{check, [ct, eunit, dialyzer]}
]}.
{eunit_opts, [no_tty, {report, {doctest_eunit_report, []}}]}.