-
Notifications
You must be signed in to change notification settings - Fork 26
/
rebar.config
43 lines (39 loc) · 1.09 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
{erl_opts, [ debug_info
, warn_missing_spec_all
]}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{ex_doc, [
{extras, [
{'README.md', #{title => <<"Overview">>}},
{'LICENSE.md', #{title => <<"License">>}}
]},
{main, <<"readme">>},
{homepage_url, <<"https://github.com/aws-beam/aws_credentials">>},
{source_url, <<"https://github.com/aws-beam/aws_credentials">>}
]}.
{deps, [ jsx
, iso8601
, {eini, "2.2.4", {pkg, eini_beam}} %% eini_beam should look like plain eini
]}.
{ct_opts, [{ct_hooks, [cth_readable_failonly, cth_readable_shell]}]}.
{ profiles
, [ { test
, [ { deps
, [meck]
}
, { erl_opts, [ nowarn_export_all
, nowarn_missing_spec_all
]
}
]
}
]
}.
{xref_checks, [ undefined_function_calls
, undefined_functions
, locals_not_used
, deprecated_function_calls
, deprecated_functions
]}.
{plugins, [ {rebar3_lint, "3.0.1"} ]}.