-
Notifications
You must be signed in to change notification settings - Fork 20
/
rebar.config
41 lines (32 loc) · 1002 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
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
{require_min_otp_vsn, "R20"}.
%warnings_as_errors, warn_untyped_record,
{erl_opts, [warn_export_all,
warn_unused_import,
{i, "include"},
{src_dirs, ["src"]}
]}.
{xref_checks, [undefined_function_calls]}.
{cover_enabled, true}.
{cover_print_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}.
{eunit_opts, [verbose]}.
{deps, [{gproc, "0.8.0"}]}.
{dialyzer, [
{warnings, [unmatched_returns, error_handling, unknown]},
{plt_apps, all_deps}
]
}.
{profiles, [
{test, [
{deps, [{meck, "0.9.2"},
{snabbkaffe, {git, "https://github.com/kafka4beam/snabbkaffe.git", {tag, "1.0.0"}}}]},
{erl_opts, [debug_info]}
]}
]}.