summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-08-23 15:21:18 -0700
committerAndre Arko <andre@arko.net>2015-08-23 15:21:18 -0700
commit71a638848e3031828ff311d72648ba934df08e33 (patch)
tree32c44c690be5f3fe4296f2da029d14647c89fd67
parent507ea45c54177c823ab17df70f87e86fd1d1a1b7 (diff)
downloadbundler-more-test-retrying.tar.gz
disable module length copmore-test-retrying
-rw-r--r--.rubocop.yml13
1 files changed, 4 insertions, 9 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 5e60f77b23..38bbcc04bb 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -73,26 +73,21 @@ Style/TrailingComma:
# Metrics
-# Arbitrary max lengths for classes simply do not work and enabling this will
-# lead to a never ending stream of annoyance and changes.
+# We've chosen to use Rubocop only for style, and not for complexity or quality checks.
Metrics/ClassLength:
Enabled: false
-# Arbitrary max lengths for methods simply do not work and enabling this will
-# lead to a never ending stream of annoyance and changes.
+Metrics/ModuleLength:
+ Enabled: false
+
Metrics/MethodLength:
Enabled: false
-# No enforced convention here.
Metrics/BlockNesting:
Enabled: false
-# It will be obvious which code is complex, Rubocop should only lint simple
-# rules for us.
Metrics/AbcSize:
Enabled: false
-# It will be obvious which code is complex, Rubocop should only lint simple
-# rules for us.
Metrics/CyclomaticComplexity:
Enabled: false