-
Notifications
You must be signed in to change notification settings - Fork 22
/
elvis.config
29 lines (29 loc) · 1.02 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
[
{
elvis,
[
{config,
[#{dirs => ["src"],
filter => "*.erl",
ignore => [hocon_parser, hocon_scanner],
ruleset => erl_files,
rules => [{elvis_style, operator_spaces, #{rules => [{right, ","},
{right, "|"},
{left, "|"},
{right, "||"},
{left, "||"}]}}]
},
#{dirs => ["test"],
filter => "*.erl",
ruleset => erl_files,
rules => [{elvis_style, operator_spaces, #{rules => [{right, ","},
{right, "|"},
{left, "|"},
{right, "||"},
{left, "||"}]}}]
}
]
}
]
}
].