(maint) Update outdated rubocop checks
This commit is contained in:
parent
8178c0beff
commit
a3f00d043f
|
@ -76,6 +76,9 @@ Style/RedundantSelf:
|
||||||
Metrics/MethodLength:
|
Metrics/MethodLength:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
|
Metrics/ModuleLength:
|
||||||
|
Enabled: false
|
||||||
|
|
||||||
# DISABLED - not useful
|
# DISABLED - not useful
|
||||||
Style/WhileUntilModifier:
|
Style/WhileUntilModifier:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
@ -318,7 +321,7 @@ Style/EmptyLiteral:
|
||||||
Metrics/LineLength:
|
Metrics/LineLength:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Style/MethodCallParentheses:
|
Style/MethodCallWithoutArgsParentheses:
|
||||||
Enabled: false
|
Enabled: false
|
||||||
|
|
||||||
Style/MethodDefParentheses:
|
Style/MethodDefParentheses:
|
||||||
|
|
6
Gemfile
6
Gemfile
|
@ -34,6 +34,6 @@ group :development do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
gem 'json', '<= 1.8' 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 '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'
|
||||||
|
|
Loading…
Reference in New Issue