-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelvis.config
More file actions
29 lines (28 loc) · 817 Bytes
/
elvis.config
File metadata and controls
29 lines (28 loc) · 817 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
%% -*- erlang -*-
[
{elvis, [
{config, [
#{
dirs => ["src"],
filter => "*.erl",
ruleset => erl_files,
rules => [{elvis_style, no_block_expressions, disable},
{elvis_style, private_data_types, disable}]
},
#{
dirs => ["test"],
filter => "*.erl",
ruleset => erl_files,
rules => [
{elvis_style, no_block_expressions, disable},
{elvis_style, no_debug_call, disable}
]
}
]}
]}
].
%%%_* Emacs ====================================================================
%%% Local Variables:
%%% allout-layout: t
%%% erlang-indent-level: 2
%%% End: