-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
37 lines (32 loc) · 1.15 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
{minimum_otp_vsn, "18.0"}.
{erl_opts, [debug_info,
{warn_format, 1},
warn_export_all,
warn_export_vars,
warn_obsolete_guard,
warn_unused_import]
}.
{plugins, [rebar3_hex]}.
{dialyzer, [{plt_prefix, "partial"},
{warnings, [unmatched_returns,
error_handling,
race_conditions,
underspecs]}]
}.
{xref_warnings, true}.
{profiles, [{native, [{erl_opts, [{native, o3},
{d, 'NATIVE'}]}]
},
{test, [{erl_opts, [{d, 'PARTIAL_DEBUG'}]},
{deps, [proper]},
{plugins, [geas_rebar3,
rebar3_lint,
rebar3_proper]},
{dialyzer, [{plt_prefix, "partial_test"}]}]
},
{markdown, [{deps, [edown]},
{edoc_opts, [{doclet, edown_doclet},
{top_level_readme, {"./README.md",
"http://github.com/jkrukoff/partial"}}]}]
}]
}.