-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Make some cops aware of safe navigation operator #6749
Make some cops aware of safe navigation operator #6749
Conversation
@@ -31,7 +31,7 @@ def extract_rhs(node) | |||
_scope, _lhs, rhs = *node | |||
elsif node.op_asgn_type? | |||
_lhs, _op, rhs = *node | |||
elsif node.send_type? | |||
elsif node.send_type? || node.csend_type? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you add a test case for this change?
RSpec is still green if I remove this change.
I guess it supports something.some_method = 1
style assignment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work! Thiank you for your pull request! 👍 👍 |
My review was delayed. |
😱 I'm sorry, I intentionally pushed such multiple commits to make it easier to read for review. 🙇
I knew how to do it and was going to do so. I will do so next time. Anyway, thank you !! :) |
Problem
Most of the cops do not detect
&.
(safe navigation operator) method offence.For example,
Style/BracesAroundHashParameters
does not aware of code that uses&.
.:
(Tested by rubocop v0.62.0.)
This PR will solve some kind of this problem.
Similar PR in past
Rails/OutputSafety
aware of safe navigation operator #4837Rails/OutputSafety
Listing target cops
I listed target cops from two perspectives:
#on_send
but not having#on_csend
.Target cops 👮👮👮
TODO
Before submitting the PR make sure the following are checked:
[Fix #issue-number]
(if the related issue exists).master
(if not - rebase it).and description in grammatically correct, complete sentences.
bundle exec rake default
. It executes all tests and RuboCop for itself, and generates the documentation.