forked from basho/mochiweb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
24 lines (24 loc) · 991 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
% -*- mode: erlang -*-
{minimum_otp_vsn, "22.0"}.
{erl_opts, [debug_info,
{platform_define, "^(18|19|20|21|22)", new_crypto_unavailable},
{platform_define, "^(18|19|20)", ssl_handshake_unavailable},
{platform_define, "^21-", otp_21}]}.
{cover_enabled, true}.
{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{profiles, [
{test, [{deps, [meck]}]},
{gha, [{erl_opts, [{d, 'GITHUBEXCLUDE'}]}]}
]}.
{dialyzer_opts, [{warnings, [no_return,
no_unused,
no_improper_lists,
no_fun_app,
no_match,
no_opaque,
no_fail_call,
error_handling,
race_conditions,
behaviours,
unmatched_returns]}]}.
{xref_checks,[undefined_function_calls,undefined_functions]}.