-
Notifications
You must be signed in to change notification settings - Fork 19
/
rebar.config
66 lines (56 loc) · 1.34 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{deps, [
{gpb, "4.10.5"}
]}.
{plugins, [{rebar3_gpb_plugin, "2.12.5"}]}.
{alias, [
{check, [xref,
{eunit, "-c"},
{ct, "-c"},
{cover, "-v --min_coverage=80"}]}
]}.
{erl_opts, [
{i, "./_build/default/plugins/gpb/include"},
{platform_define, "^(19|2)", rand_only},
warn_bif_clash,
warn_deprecated_function,
warn_deprecated_type,
warn_export_all,
warn_shadow_vars,
warn_obsolete_guard,
warn_unused_import,
warn_unused_function,
warn_unused_record,
warn_unused_vars,
warnings_as_errors
]}.
{profiles, [
{test, [{plugins, [coveralls]}]}
]}.
{xref_checks, [undefined_function_calls,
undefined_functions,
deprecated_function_calls,
deprecated_functions]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{cover_excl_mods, [katja_pb]}.
{coveralls_coverdata, "_build/test/cover/*.coverdata"}.
{coveralls_service_name, "travis-ci"}.
{gpb_opts, [
{i, "proto"},
{module_name_suffix, "_pb"},
{o_erl, "src"},
{o_hrl, "include"},
{strings_as_binaries, true},
type_specs,
epb_compatibility]}.
{provider_hooks, [
{pre, [{compile, {protobuf, compile}},
{clean, {protobuf, clean}}
]}
]}.
{edoc_opts, [
{def, [
{version, "0.10.0"},
{years, "2014-2016"}
]}
]}.