forked from Stratus3D/eflambe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elvis.config
35 lines (32 loc) · 1.75 KB
/
elvis.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
[{elvis, [
{config, [
#{ dirs => ["apps/*/src/**", "src/**", "test/**"],
filter => "*.erl",
ruleset => erl_files,
rules => [
{elvis_style, no_debug_call, #{ debug_functions => [{ct, pal}
, {ct, print}
]
}},
{elvis_style, dont_repeat_yourself, #{ min_complexity => 13 }},
{elvis_text_style, line_length, #{ limit => 100
, skip_comments => whole_line
}},
% Disable for now as I've currently got a lot
% of violations when it comes to operator
% spaces
{elvis_style, operator_spaces, disable},
% Also disable check for catches, as I've got a
% couple in the tests
{elvis_style, no_catch_expressions, disable}
]},
#{ dirs => ["."],
filter => "rebar.config",
ruleset => rebar_config },
#{ dirs => ["."],
filter => "elvis.config",
ruleset => elvis_config }
]
},
{verbose, true}
]}].