-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
rebar.config
69 lines (53 loc) · 1.68 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
67
68
69
%% == Compiler and Profiles ==
{erl_opts,
[warn_unused_import, warn_export_vars, warnings_as_errors, verbose, report, debug_info]}.
{minimum_otp_vsn, "27"}.
{profiles,
[{test,
[{ct_extra_params,
"-no_auto_compile -dir ebin -logdir log/ct --erl_args -smp enable -boot start_sasl"},
{cover_enabled, true},
{cover_export_enabled, true},
{cover_opts, [verbose, {min_coverage, 92}]},
{ct_opts, [{verbose, true}]},
{deps, [{katana, "1.0.0"}, {mixer, "1.2.0", {pkg, inaka_mixer}}, {meck, "0.9.2"}]},
{dialyzer,
[{warnings, [no_return, unmatched_returns, error_handling, underspecs, unknown]},
{plt_extra_apps, [common_test, katana, meck]}]}]}]}.
{alias,
[{test,
[compile,
format,
hank,
lint,
xref,
dialyzer,
ct,
cover,
{covertool, "generate"},
ex_doc]}]}.
{covertool, [{coverdata_files, ["ct.coverdata"]}]}.
%% == Dependencies and plugins ==
{project_plugins,
[{rebar3_hank, "~> 1.4.1"},
{rebar3_hex, "~> 7.0.8"},
{rebar3_format, "~> 1.3.0"},
{rebar3_lint, "~> 3.2.6"},
{rebar3_ex_doc, "~> 0.2.23"},
{rebar3_depup, "~> 0.4.0"},
{covertool, "~> 2.0.6"}]}.
%% == Documentation ==
{ex_doc,
[{source_url, <<"https://github.com/inaka/worker_pool">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"README.md">>},
{prefix_ref_vsn_with_v, false}]}.
{hex, [{doc, #{provider => ex_doc}}]}.
%% == Format ==
{format, [{files, ["*.config", "src/*", "test/*"]}]}.
%% == Dialyzer + XRef ==
{dialyzer,
[{warnings, [no_return, unmatched_returns, error_handling, underspecs, unknown]}]}.
{xref_checks,
[undefined_function_calls, deprecated_function_calls, deprecated_functions]}.
{xref_extra_paths, ["test/**"]}.