-
Notifications
You must be signed in to change notification settings - Fork 8
/
rebar.config
58 lines (49 loc) · 1.17 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{erl_opts, [
warn_unused_vars,
warn_shadow_vars,
warn_unused_import,
warn_obsolete_guard,
debug_info
]}.
{project_plugins, [
{pc, "~> 1.15.0"},
{rebar3_hex, "~> 7.0.8"},
{rebar3_format, "~> 1.3.0"},
{erlfmt, "~> 1.3.0"},
{rebar3_ex_doc, "~> 0.2.11"},
{rebar3_lint, "~> 3.2.6"},
{rebar3_hank, "~> 1.4.1"}
]}.
{deps, [{sasl_auth, "2.3.1"}]}.
{xref_checks, [
undefined_function_calls,
locals_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{dialyzer, [
{warnings, [error_handling, unknown, unmatched_returns]},
{plt_extra_apps, [ssl]}
]}.
{profiles, [
{test, [
{deps, [{meck, "0.9.2"}, {kafka_protocol, "4.1.7"}]},
{erl_opts, [nowarn_export_all]}
]}
]}.
{format, [
{files, ["src/*.erl", "include/*.hrl"]},
{formatter, erlfmt_formatter},
{options, #{print_width => 120, ignore_pragma => true}}
]}.
{cover_enabled, true}.
{cover_opts, [verbose]}.
{alias, [
{test, [ct, {cover, "-v"}]},
{check, [hank, xref, dialyzer]}
]}.
{ex_doc, [
{source_url, "https://github.com/kafka4beam/brod_gssapi"},
{extras, ["README.md", "LICENSE.md"]},
{main, "readme"}
]}.