2022-02-21 08:56:58 +00:00
|
|
|
[
|
|
|
|
{elvis, [
|
|
|
|
{verbose, true},
|
|
|
|
{config, [
|
|
|
|
#{
|
2022-07-13 08:15:36 +00:00
|
|
|
dirs => ["src", "include"],
|
2022-02-21 08:56:58 +00:00
|
|
|
filter => "*.erl",
|
|
|
|
ruleset => erl_files,
|
|
|
|
rules => [
|
|
|
|
% Too opionated
|
|
|
|
{elvis_style, state_record_and_type, disable},
|
|
|
|
{elvis_style, invalid_dynamic_call, #{
|
|
|
|
ignore => [
|
|
|
|
% Uses thrift reflection through `struct_info/1`.
|
|
|
|
bouncer_thrift,
|
|
|
|
% Implements parts of logger duties, including message formatting.
|
|
|
|
bouncer_audit_log
|
|
|
|
]
|
|
|
|
}},
|
|
|
|
% Readable code for building bin keys
|
|
|
|
{elvis_style, no_if_expression, #{ignore => [bouncer_gunner_metrics_event_h]}},
|
|
|
|
{elvis_style, macro_names, #{ignore => [bouncer_gunner_metrics_event_h]}}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["test"],
|
|
|
|
filter => "*.erl",
|
|
|
|
ruleset => erl_files,
|
|
|
|
rules => [
|
|
|
|
% We want to use `ct:pal/2` and friends in test code.
|
|
|
|
{elvis_style, no_debug_call, disable},
|
|
|
|
% Assert macros can trigger use of ignored binding, yet we want them for better
|
|
|
|
% readability.
|
|
|
|
{elvis_style, used_ignored_variable, disable},
|
|
|
|
% Tests are usually more comprehensible when a bit more verbose.
|
|
|
|
{elvis_style, dont_repeat_yourself, #{min_complexity => 20}},
|
|
|
|
% Too opionated
|
|
|
|
{elvis_style, state_record_and_type, disable},
|
|
|
|
{elvis_style, god_modules, #{ignore => [ct_gun_event_h]}}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "Makefile",
|
|
|
|
ruleset => makefiles
|
|
|
|
},
|
2022-07-13 08:15:36 +00:00
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "elvis.config",
|
|
|
|
ruleset => elvis_config
|
|
|
|
},
|
2022-02-21 08:56:58 +00:00
|
|
|
#{
|
|
|
|
dirs => ["."],
|
|
|
|
filter => "rebar.config",
|
2022-07-13 08:15:36 +00:00
|
|
|
ruleset => rebar_config,
|
2022-02-21 08:56:58 +00:00
|
|
|
rules => [
|
2022-07-13 08:15:36 +00:00
|
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
2022-02-21 08:56:58 +00:00
|
|
|
{elvis_text_style, no_tabs},
|
2022-07-13 08:15:36 +00:00
|
|
|
{elvis_text_style, no_trailing_whitespace},
|
|
|
|
%% Temporarily disabled till regex pattern is available
|
|
|
|
{elvis_project, no_deps_master_rebar, disable}
|
2022-02-21 08:56:58 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
#{
|
|
|
|
dirs => ["src"],
|
|
|
|
filter => "*.app.src",
|
|
|
|
rules => [
|
2022-07-13 08:15:36 +00:00
|
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
2022-02-21 08:56:58 +00:00
|
|
|
{elvis_text_style, no_tabs},
|
|
|
|
{elvis_text_style, no_trailing_whitespace}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
].
|