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

Disable Style/OperatorMethodCall and release 2.11.1 #474

Merged
merged 2 commits into from
Jan 2, 2023
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
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rubocop-shopify (2.11.0)
rubocop-shopify (2.11.1)
rubocop (~> 1.42)

GEM
Expand Down
2 changes: 1 addition & 1 deletion rubocop-shopify.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "rubocop-shopify"
s.version = "2.11.0"
s.version = "2.11.1"
s.summary = "Shopify's style guide for Ruby."
s.description = "Gem containing the rubocop.yml config that corresponds to "\
"the implementation of the Shopify's style guide for Ruby."
Expand Down
2 changes: 1 addition & 1 deletion rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ Style/OpenStructUse:
Enabled: true

Style/OperatorMethodCall:
Enabled: true
Enabled: false

Style/OptionalBooleanParameter:
Enabled: false
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/full_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3423,7 +3423,7 @@ Style/OpenStructUse:
Style/OperatorMethodCall:
Description: Checks for redundant dot before operator method call.
StyleGuide: "#operator-method-call"
Enabled: true
Enabled: false
VersionAdded: '1.37'
Style/OptionHash:
Description: Don't use option hashes when you can use keyword arguments.
Expand Down