mirror of
https://github.com/valitydev/anapi-v1.git
synced 2024-11-06 02:35:17 +00:00
e2b769917c
* Vendor in swagger-codegen-generated code instead * Ensure testcase doesn't fail on client validation * Bump deps + switch to valitydev upstreams * valitydev/scoper@7f3183d * valitydev/woody_erlang@3ddacb9 * valitydev/cowboy_access_log@04da359 * valitydev/bouncer-proto@633ba73 * valitydev/bouncer_client_erlang@535449a * valitydev/genlib@82c5ff3 * valitydev/party-shop-proto@72faaf6 * valitydev/analytics-proto@f691834 * Add CI/CD @ GH Actions * Cleanup sys.config * Bump to valitydev/damsel@318a7a6
54 lines
1.9 KiB
Plaintext
54 lines
1.9 KiB
Plaintext
[
|
|
{elvis, [
|
|
{verbose, true},
|
|
{config, [
|
|
#{
|
|
dirs => ["apps/*/src", "apps/*/include", "apps/*/test"],
|
|
filter => "*.erl",
|
|
ignore => ["apps/swag_*"],
|
|
ruleset => erl_files,
|
|
rules => [
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
|
{elvis_style, no_if_expression, disable},
|
|
% Just being lazy
|
|
{elvis_style, atom_naming_convention, #{regex => "^([a-z][a-zA-Z0-9]*_?)*$"}},
|
|
{elvis_style, dont_repeat_yourself, #{min_complexity => 30}}
|
|
]
|
|
},
|
|
#{
|
|
dirs => ["."],
|
|
filter => "Makefile",
|
|
ruleset => makefiles
|
|
},
|
|
#{
|
|
dirs => ["."],
|
|
filter => "elvis.config",
|
|
ruleset => elvis_config
|
|
},
|
|
#{
|
|
dirs => [".", "apps/*"],
|
|
filter => "rebar.config",
|
|
ignore => ["apps/swag_*"],
|
|
ruleset => rebar_config,
|
|
rules => [
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
|
{elvis_text_style, no_tabs},
|
|
{elvis_text_style, no_trailing_whitespace},
|
|
%% Temporarily disabled till regex pattern is available
|
|
{elvis_project, no_deps_master_rebar, disable}
|
|
]
|
|
},
|
|
#{
|
|
dirs => ["apps/*/src"],
|
|
filter => "*.app.src",
|
|
ignore => ["apps/swag_*"],
|
|
rules => [
|
|
{elvis_text_style, line_length, #{limit => 120}},
|
|
{elvis_text_style, no_tabs},
|
|
{elvis_text_style, no_trailing_whitespace}
|
|
]
|
|
}
|
|
]}
|
|
]}
|
|
].
|