diff --git a/.rubocop.yml b/.rubocop.yml
index 0b70a44..064022d 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,32 +1,34 @@
 AllCops:
   DisplayCopNames: true
   Exclude:
     - 'lib/capistrano/**/*'
     - 'vendor/**/*'
     - 'unicorn.conf.rb'
 
 Metrics/LineLength:
   Max: 120
-Metrics/AbcSize:
-  Max: 18
+Metrics/ParameterLists:
+  Max: 6
 
 Documentation:
   Enabled: false
 Style/NegatedIf:
   Enabled: false
 Style/Not:
   Enabled: false
 Style/WordArray:
   Enabled: false
 Style/TrailingComma:
   Enabled: false
 Style/BlockDelimiters:
   Enabled: false
 Style/TrailingBlankLines:
   Enabled: false
 Style/EmptyLinesAroundClassBody:
   Enabled: false
 Style/EmptyLinesAroundModuleBody:
   Enabled: false
 Lint/HandleExceptions:
   Enabled: false
+Metrics/AbcSize:
+  Enabled: false