-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrebar.config
More file actions
27 lines (18 loc) · 762 Bytes
/
rebar.config
File metadata and controls
27 lines (18 loc) · 762 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
{validate_app_modules, true}.
{erl_opts, [warnings_as_errors, debug_info,
{parse_transform, lager_transform}]}.
{clean_files, ["*.eunit", "ebin/*.beam"]}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.
{cover_enabled, true}.
{deps, [
{lager, "2.*", {git, "git://github.com/basho/lager",
{tag, "7993c8f8a2626b91babd27d1153c63d6a0001589"}}}
%% For testing only
% {meck, "0.*", {git, "https://github.com/eproxus/meck.git", {branch, "master"}}},
% {proper, "1.1", {git, "https://github.com/manopapad/proper.git", "HEAD"}}
]}.
%% == xref ==
{xref_warnings, false}.
%% xref checks to run
{xref_checks, [exports_not_used, undefined_function_calls]}.
%%-*- mode: erlang -*-