-
Notifications
You must be signed in to change notification settings - Fork 9
/
rebar.config
40 lines (34 loc) · 860 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
{erl_opts, [
warnings_as_errors,
{platform_define, "^17.", 'OTP_17'}
]}.
{erl_first_files, [
"src/category/category.erl"
, "src/category/datum_cat.erl"
, "src/category/datum_cat_f.erl"
, "src/category/datum_cat_option.erl"
, "src/category/datum_cat_undefined.erl"
, "src/category/datum_cat_either.erl"
, "src/category/datum_cat_reader.erl"
, "src/category/datum_cat_kleisli.erl"
, "src/partial.erl"
, "src/foldable.erl"
, "src/maplike.erl"
, "src/topological.erl"
, "src/traversable.erl"
, "src/generic.erl"
]}.
%%
%% Exclude parse transform from cover reports
{cover_excl_mods, [
category
, partial
, generic
]}.
%%
%%
{plugins , [coveralls]}.
{cover_enabled , true}.
{cover_export_enabled , true}.
{coveralls_coverdata , "_build/test/cover/ct.coverdata"}.
{coveralls_service_name , "travis-ci"}.