-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrebar.config
42 lines (37 loc) · 1.39 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
{erl_opts, [debug_info, warn_export_vars, warn_shadow_vars, warn_obsolete_guard]}.
{plugins, [
{rebar3_elixir, "~> 0.1.2"},
rebar3_hex,
rebar3_lint
]}.
{deps, [
{lager, "~> 3.2"},
{jsx, "~> 2.8.0"}
]}.
{eunit_opts, [
verbose, {report, {eunit_surefire, [{dir, "test/eunit"}]}}
]}.
{pre_hooks, [{eunit, "mkdir -p test/eunit"}]}.
{profiles, [
{release, [
{elvis, [
#{dirs => ["."],
filter => "rebar.config",
rules => [{elvis_project, no_deps_master_rebar, []}]}]}
]}
]}.
{elvis,
[#{dirs => ["src", "test"],
filter => "*.erl",
rules => [{elvis_style, line_length, #{limit => 180}},
{elvis_style, no_tabs},
{elvis_style, no_trailing_whitespace},
{elvis_style, macro_names},
{elvis_style, macro_module_names},
{elvis_style, dont_repeat_yourself, #{min_complexity => 25}},
{elvis_style, operator_spaces, #{rules => [{right, ","},
{right, "++"},
{left, "++"}]}}]},
#{dirs => ["."],
filter => "rebar.config",
rules => [{elvis_project, no_deps_master_rebar, []}]}]}.