mirror of
https://github.com/valitydev/bouncer.git
synced 2024-11-06 02:15:18 +00:00
af42521899
* TD-187: Add CI/CD * Fix specs * Fix tests * Review fixes
68 lines
2.7 KiB
Plaintext
68 lines
2.7 KiB
Plaintext
[
|
|
{elvis, [
|
|
{verbose, true},
|
|
{config, [
|
|
#{
|
|
dirs => ["src"],
|
|
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
|
|
},
|
|
#{
|
|
dirs => ["."],
|
|
filter => "rebar.config",
|
|
rules => [
|
|
{elvis_text_style, line_length, #{limit => 100, skip_comments => false}},
|
|
{elvis_text_style, no_tabs},
|
|
{elvis_text_style, no_trailing_whitespace}
|
|
]
|
|
},
|
|
#{
|
|
dirs => ["src"],
|
|
filter => "*.app.src",
|
|
rules => [
|
|
{elvis_text_style, line_length, #{limit => 100, skip_comments => false}},
|
|
{elvis_text_style, no_tabs},
|
|
{elvis_text_style, no_trailing_whitespace}
|
|
]
|
|
}
|
|
]}
|
|
]}
|
|
].
|