-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
45 lines (39 loc) · 927 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{project_plugins, [rebar3_ex_doc, rebar3_lint]}.
{hex, [{doc, #{provider => ex_doc}}]}.
{ex_doc, [
{package, false},
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}}
]},
{main, "README.md"},
{homepage_url, "https://github.com/adgear/consent-string"},
{source_url, "https://github.com/adgear/consent-string"}
]}.
{erl_opts, [
debug_info
]}.
{profiles, [
{compile, [
{erl_opts, [
warnings_as_errors,
warn_export_all,
warn_export_vars,
warn_missing_spec,
warn_obsolete_guard,
warn_shadow_vars,
warn_untyped_record,
warn_unused_import,
warn_unused_vars
]}
]}
]}.
{project_plugins, [rebar3_lint]}.
{xref_checks, [
deprecated_functions,
deprecated_function_calls,
locals_not_used,
undefined_function_calls
]}.
%% used to name the command line utility to ag-consent
{escript_name, 'ag-consent'}.