(maint) Update outdated rubocop checks

This commit is contained in:
Will Hopper 2017-03-16 14:01:22 -07:00
parent 8178c0beff
commit a3f00d043f
2 changed files with 7 additions and 4 deletions

View File

@ -76,6 +76,9 @@ Style/RedundantSelf:
Metrics/MethodLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
# DISABLED - not useful
Style/WhileUntilModifier:
Enabled: false
@ -318,7 +321,7 @@ Style/EmptyLiteral:
Metrics/LineLength:
Enabled: false
Style/MethodCallParentheses:
Style/MethodCallWithoutArgsParentheses:
Enabled: false
Style/MethodDefParentheses:

View File

@ -36,4 +36,4 @@ end
gem 'json', '<= 1.8' if RUBY_VERSION < '2.0.0'
gem 'json_pure', '<= 2.0.1' if RUBY_VERSION < '2.0.0'
gem 'rubocop' if RUBY_VERSION >= '2.0.0'
gem 'rubocop', '<= 0.47.0' if RUBY_VERSION >= '2.0.0'