summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
Diffstat (limited to '.rubocop.yml')
-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