-
Notifications
You must be signed in to change notification settings - Fork 6
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
rubocop: Naming/PredicateName: Add is_to_s to AllowedMethods #74
Conversation
07b14e1
to
83af2ec
Compare
Codecov Report
@@ Coverage Diff @@
## master #74 +/- ##
=======================================
Coverage 27.86% 27.86%
=======================================
Files 2 2
Lines 61 61
=======================================
Hits 17 17
Misses 44 44 Continue to review full report at Codecov.
|
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.
Looks good. Are there more we should capture?
I was wondering the same. Nothing coming up on my mind, maybe someone else has an idea |
@@ -439,6 +439,7 @@ Style/PerlBackrefs: | |||
|
|||
Naming/PredicateName: | |||
Enabled: True | |||
AllowedMethods: ['is_a', 'is_to_s'] |
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.
Shouldn't this have been...
AllowedMethods: ['is_a', 'is_to_s'] | |
AllowedMethods: ['is_a?', 'is_to_s'] |
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.
Hmm, yea the default was with ?
I'll push another PR and fix it
No description provided.