(maint) Update outdated rubocop checks
This commit is contained in:
parent
8178c0beff
commit
a3f00d043f
|
@ -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:
|
||||
|
|
6
Gemfile
6
Gemfile
|
@ -34,6 +34,6 @@ group :development do
|
|||
end
|
||||
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 'json', '<= 1.8' if RUBY_VERSION < '2.0.0'
|
||||
gem 'json_pure', '<= 2.0.1' if RUBY_VERSION < '2.0.0'
|
||||
gem 'rubocop', '<= 0.47.0' if RUBY_VERSION >= '2.0.0'
|
||||
|
|
Loading…
Reference in New Issue