-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathelvis.config
More file actions
29 lines (29 loc) · 978 Bytes
/
elvis.config
File metadata and controls
29 lines (29 loc) · 978 Bytes
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
[
{config, [
#{
files => ["src/**/*.erl"],
ruleset => erl_files,
rules =>
[
{elvis_style, no_invalid_dynamic_calls, #{
ignore => [wpool_process, wpool_time_checker]
}},
{elvis_style, no_god_modules, #{limit => 30}},
{elvis_style, state_record_and_type, disable},
{elvis_style, dont_repeat_yourself, #{
ignore => [wpool_SUITE], min_complexity => 13
}}
]
},
#{
files => ["test/*.erl"],
ruleset => erl_files,
rules =>
[
{elvis_style, no_debug_call, disable},
{elvis_style, state_record_and_type, disable},
{elvis_style, dont_repeat_yourself, #{min_complexity => 13}}
]
}
]}
].