-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
elvis.config
77 lines (77 loc) · 2.84 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
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
%% -*- mode: erlang -*-
[
{
elvis,
[
{config, [
#{
dirs => ["src", "apps/**/src"],
filter => "*.erl",
ruleset => erl_files,
rules => [
{elvis_style, param_pattern_matching, disable},
{elvis_style, macro_names, disable},
{elvis_style, function_naming_convention, disable},
{elvis_style, state_record_and_type, disable},
{elvis_style, no_common_caveats_call, #{}},
{elvis_style, no_debug_call, #{
debug_functions => [
{ct, pal},
{ct, print}
]
}},
{elvis_style, operator_spaces, #{
rules => [
{right, "|"},
{left, "|"},
{right, "||"},
{left, "||"}
]
}},
{elvis_style, dont_repeat_yourself, #{min_complexity => 20}},
{elvis_style, god_modules, #{limit => 100}},
% trust erlfmt
{elvis_text_style, line_length, #{
limit => 120,
skip_comments => false
}}
]
},
#{
dirs => ["test", "apps/**/test"],
filter => "*.erl",
rules => [
{elvis_text_style, line_length, #{
limit => 120,
skip_comments => false
}},
{elvis_style, dont_repeat_yourself, #{min_complexity => 100}},
{elvis_style, nesting_level, #{level => 6}}
]
},
#{
dirs => ["apps/emqx_rule_engine/src"],
filter => "*_rule_funcs.erl",
rules => [
{elvis_style, god_modules, disable}
]
},
#{
dirs => ["."],
filter => "Makefile",
ruleset => makefiles
},
#{
dirs => ["."],
filter => "rebar.config",
ruleset => rebar_config
},
#{
dirs => ["."],
filter => "elvis.config",
ruleset => elvis_config
}
]}
]
}
].