forked from emqx/emqx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelvis.config
More file actions
88 lines (88 loc) · 3.51 KB
/
Copy pathelvis.config
File metadata and controls
88 lines (88 loc) · 3.51 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
79
80
81
82
83
84
85
86
87
88
%% -*- mode: erlang -*-
[
{
elvis,
[
{config, [
#{
dirs => ["src", "apps/**/src"],
filter => "*.erl",
ruleset => erl_files,
rules => [
{elvis_style, no_throw, disable},
{elvis_style, param_pattern_matching, disable},
{elvis_style, macro_names, disable},
{elvis_style, macro_module_names, disable},
{elvis_style, function_naming_convention, disable},
{elvis_style, state_record_and_type, disable},
{elvis_style, export_used_types, disable},
{elvis_style, no_common_caveats_call, #{}},
{elvis_style, no_block_expressions, disable},
{elvis_style, no_import, disable},
{elvis_style, private_data_types, disable},
{elvis_style, max_function_arity, disable},
{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, consistent_variable_casing, #{
ignore => [emqx_ocpp_channel]
}},
{elvis_style, god_modules, #{limit => 100}},
% trust erlfmt
{elvis_text_style, line_length, #{
limit => 120,
skip_comments => false
}},
{elvis_style, no_block_expressions, disable}
]
},
#{
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
}
]}
]
}
].