-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathelvis.config
More file actions
38 lines (38 loc) · 1015 Bytes
/
elvis.config
File metadata and controls
38 lines (38 loc) · 1015 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
30
31
32
33
34
35
36
37
38
[
{elvis, [
{config, [
#{
dirs => ["src"],
filter => "*.erl",
ruleset => erl_files,
rules => [
{elvis_style, function_naming_convention, #{
ignore => [ipinfo, ipinfo_lite, ipinfo_core, ipinfo_plus],
regex => "^([a-z][a-z0-9]*_?)*$"
}}
]
},
#{
dirs => ["."],
filter => "Makefile",
ruleset => makefiles
},
#{
dirs => ["."],
filter => "rebar.config",
ruleset => rebar_config
},
#{
dirs => ["."],
filter => "elvis.config",
ruleset => elvis_config
}
]
},
{output_format, colors},
{verbose, true},
{no_output, false},
{parallel, 1}
]
}
].