diff options
author | Stefan Lance <stefan@lances.net> | 2015-06-20 15:49:57 -0500 |
---|---|---|
committer | Samuel Giddins <segiddins@segiddins.me> | 2016-07-05 15:11:19 -0300 |
commit | 055f95b62dae20eaa34a4cf2a4919b1fbd0da4ed (patch) | |
tree | c0fb86fa211d7ffbe6fa9296305d3856bffb617d /.rubocop.yml | |
parent | f58f04277cb47dc9b1fdfe401a15bbe281dfa7c3 (diff) | |
download | bundler-055f95b62dae20eaa34a4cf2a4919b1fbd0da4ed.tar.gz |
Show deprecation warning when using --binstubs
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 8ad27fbe1f..cbce695fbd 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -118,3 +118,8 @@ Metrics/AbcSize: Metrics/CyclomaticComplexity: Enabled: false + +# It will be obvious which code is complex, Rubocop should only lint simple +# rules for us. +Metrics/PerceivedComplexity: + Enabled: false |