-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrebar.config
More file actions
37 lines (25 loc) · 715 Bytes
/
rebar.config
File metadata and controls
37 lines (25 loc) · 715 Bytes
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
{base_dir, "_build"}.
{erl_opts, [debug_info, warn_missing_spec_all]}.
{deps, []}.
{dialyzer, [
{get_warnings, false}, % DON'T set it to 'true'! This leads to a high CPU load when building PLT
{warnings, [
error_handling, race_conditions, unmatched_returns, unknown
]}
]}.
{xref_warnings,false}.
{xref_checks, [
undefined_function_calls, undefined_functions, locals_not_used,
deprecated_function_calls, deprecated_functions
]}.
{edoc_opts, [{preprocess, true}]}.
{profiles, [
{test, [
{erl_opts, [nowarn_missing_spec_all]}
]}
]}.
{project_plugins, [covertool]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{cover_opts, [verbose]}.
{covertool, [{coverdata_files, ["ct.coverdata"]}]}.