about summary refs log tree commit diff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2017-07-31 22:19:13 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-07-31 15:19:13 +0200
commit3e7a541e09ac875be21bea3cf8a444e3228d2a4c (patch)
tree616d749117905fd68bb35762a208382b0cc1fa20 /.rubocop.yml
parent93aafa85496b5e1ae735e174157c3a7e1744ede2 (diff)
Change RuboCop rules to loose (#4464)
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 1cbdadd49..ae3697174 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -27,6 +27,7 @@ Metrics/AbcSize:
   Max: 100
 
 Metrics/BlockLength:
+  Max: 35
   Exclude:
     - 'lib/tasks/**/*'
 
@@ -35,10 +36,10 @@ Metrics/BlockNesting:
 
 Metrics/ClassLength:
   CountComments: false
-  Max: 200
+  Max: 300
 
 Metrics/CyclomaticComplexity:
-  Max: 15
+  Max: 25
 
 Metrics/LineLength:
   AllowURI: true
@@ -53,11 +54,11 @@ Metrics/ModuleLength:
   Max: 200
 
 Metrics/ParameterLists:
-  Max: 4
+  Max: 5
   CountKeywordArgs: true
 
 Metrics/PerceivedComplexity:
-  Max: 10
+  Max: 20
 
 Rails:
   Enabled: true