-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathrebar.config
More file actions
78 lines (70 loc) · 1.7 KB
/
rebar.config
File metadata and controls
78 lines (70 loc) · 1.7 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{erl_opts, [
{src_dirs, ["src"]},
warn_unused_vars,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
strict_validation,
warn_export_vars,
warn_exported_vars,
warn_missing_spec,
warn_untyped_record,
debug_info
]}.
{deps, [
recon
]}.
{project_plugins, [
erlfmt,
covertool,
rebar3_lint,
rebar3_ex_doc
]}.
{shell, [
{apps, [observer_cli]}
]}.
{escript_main_app, observer_cli}.
{escript_emu_args,
"%%! -escript main observer_cli_escriptize -hidden +sbtu +A0 -elixir ansi_enabled true\n"}.
{escript_incl_apps, [recon]}.
{dialyzer_opts, [{warnings, [unmatched_returns, error_handling, race_conditions, behaviours]}]}.
{edoc_opts, [
{report_missing_types, true},
{source_path, ["src"]},
{report_missing_types, true},
{todo, true},
{packages, false},
{subpackages, false}
]}.
{xref_checks, [undefined_function_calls]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{cover_print_enabled, true}.
{cover_export_enabled, true}.
{covertool, [{coverdata_files, ["eunit.coverdata", "proper.coverdata", "ct.coverdata"]}]}.
{profiles, [
{test, [
{erl_opts, [nowarn_missing_spec]}
]},
{inet6, [
{escript_emu_args,
"%%! -escript main observer_cli_escriptize -hidden -proto_dist inet6_tcp +sbtu +A0 -elixir ansi_enabled true\n"}
]},
{ci, [
{erl_opts, [warn_as_error]}
]}
]}.
{erlfmt, [write]}.
{alias, [
{check, [compile, lint, fmt, xref, dialyzer, ex_doc]}
]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{edoc_opts, [{preprocess, true}]}.
{ex_doc, "docs.exs"}.