-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrebar.config
More file actions
27 lines (23 loc) · 691 Bytes
/
Copy pathrebar.config
File metadata and controls
27 lines (23 loc) · 691 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
{erl_opts, [ debug_info
, warnings_as_errors
% TODO: Check possible bug using warn_missing_spec_all option.
% See the discussion topic in Erlang forums:
% https://erlangforums.com/t/maybe-a-bug-compiling-with-warn-missing-spec-option/2623
% , warn_missing_spec_all
, verbose
]
}.
{deps, []}.
% TODO: Improve cover
{cover_enabled, true}.
{cover_opts, [verbose]}.
{eunit_opts, [verbose]}.
{alias, [ { check
, [ dialyzer
, {eunit, "--cover --verbose --profile"}
, {ct, "--cover --verbose"}
, {cover, "--verbose"}
]
}
]
}.