-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrebar.config
51 lines (41 loc) · 911 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
43
44
45
46
47
48
49
50
51
%% vim: set ft=erlang : -*- erlang -*-
{require_min_otp_vsn, "OTP17"}.
{erl_opts, [
warnings_as_errors,
warn_export_all,
warn_untyped_record
]}.
{xref_checks, [fail_on_warning, undefined_function_calls]}.
{clean_files, [".eunit/*", "ebin/*.beam"]}.
{cover_enabled, true}.
{edoc_opts, [
{dialyzer_specs, all},
{report_missing_type, true},
{report_type_mismatch, true},
{pretty_print, erl_pp},
{preprocess, true}
]}.
{validate_app_modules, true}.
{shell, [{apps, [gen_cop]}]}.
{dialyzer,
[
{plt_apps, all_deps},
{warnings,
[
error_handling,
unmatched_returns,
unknown,
no_improper_lists
]}
]}.
{deps,
[
{logi, ".*", {git, "http://github.com/sile/logi.git", {tag, "0.5.7"}}}
]}.
{profiles,
[
{test,
[
{plugins, [covertool]}
]}
]}.