Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update RuboCop to 0.92 #763

Merged
merged 1 commit into from
Sep 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions config/upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2463,7 +2463,7 @@ Style/ArrayCoercion:
with a variable you want to treat as an Array, but you're not certain it's an array.
StyleGuide: '#array-coercion'
Safe: false
Enabled: 'pending'
Enabled: false
VersionAdded: '0.88'

Style/ArrayJoin:
Expand Down Expand Up @@ -2863,7 +2863,8 @@ Style/DateTime:
StyleGuide: '#date--time'
Enabled: false
VersionAdded: '0.51'
VersionChanged: '0.59'
VersionChanged: '0.92'
SafeAutoCorrect: false
AllowCoercion: false

Style/DefWithParentheses:
Expand Down Expand Up @@ -3725,6 +3726,8 @@ Style/OptionalBooleanParameter:
Enabled: pending
Safe: false
VersionAdded: '0.89'
AllowedMethods:
- respond_to_missing?

Style/OrAssignment:
Description: 'Recommend usage of double pipe equals (||=) where applicable.'
Expand Down
2 changes: 1 addition & 1 deletion lib/cookstyle/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Cookstyle
VERSION = "6.19.2" # rubocop: disable Style/StringLiterals
RUBOCOP_VERSION = '0.91.1'
RUBOCOP_VERSION = '0.92.0'
end