summaryrefslogtreecommitdiffhomepage
path: root/.rubocop.yml
diff options
context:
space:
mode:
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml23
1 files changed, 21 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 4762417..37b7a19 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -13,13 +13,32 @@ Style/FrozenStringLiteralComment:
EnforcedStyle: always
Metrics/MethodLength:
- Max: 20
+ Max: 40
Metrics/ClassLength:
- Max: 500
+ Enabled: false
+
+Metrics/BlockLength:
+ Exclude:
+ - "spec/**/*"
+
+Metrics/ParameterLists:
+ Enabled: false
+
+Metrics/AbcSize:
+ Enabled: false
+
+Metrics/CyclomaticComplexity:
+ Enabled: false
+
+Metrics/PerceivedComplexity:
+ Enabled: false
Layout/LineLength:
Enabled: false
Style/Documentation:
Enabled: false
+
+Style/RedundantStructKeywordInit:
+ Enabled: false