forked from haljin/erlesy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
29 lines (24 loc) · 840 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
{deps, [ jsx ]}.
{xref_checks, [ undefined_function_calls, locals_not_used, deprecated_function_calls ]}.
%% Code formatter
{plugins, [rebar3_format]}.
{format, [ {formatter, otp_formatter} ]}.
%%-------------------------------------------------------------------
%% Profiles
%%-------------------------------------------------------------------
{profiles, [
{test, [
{erl_opts, [debug_info, nowarn_export_all]},
{plugins, [{coveralls, {git, "https://github.com/markusn/coveralls-erl", {branch, "master"}}}]},
{deps, [meck]}
]},
{lint, [
{plugins, [
{rebar3_lint, {git, "https://github.com/project-fifo/rebar3_lint.git", {tag, "0.1.11"}}}
]}
]}
]}.
{cover_enabled, true}.
{cover_export_enabled, true}.
{coveralls_coverdata, "_build/test/cover/eunit.coverdata"}.
{coveralls_service_name, "travis-ci"}.