-
-
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
Require a space before first argument of a method call #4265
Require a space before first argument of a method call #4265
Conversation
🐬 |
^ LGTM |
CHANGELOG.md
Outdated
@@ -2,6 +2,9 @@ | |||
|
|||
## master (unreleased) | |||
|
|||
### New features |
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.
There's a section called Changes
where we normally put changes to existing cops, although this might even qualify as a bug fix. 🙂
Great first contribution! ❤️ |
@@ -4,6 +4,7 @@ | |||
|
|||
### Bug fixes | |||
|
|||
* [#4265](https://github.com/bbatsov/rubocop/pull/4265): Require a space before first argument of a method call in `Style/SpaceBeforeFirstArg` cop. ([@cjlarose][]) |
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.
You have to add yourself to the bottom of the changelog.
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.
Sorry about that! Updated the CHANGELOG with a link to myself.
Ruby permits a method name to be followed immediately by a string literal, with no space between them. This change updates the SpaceBeforeFirstArg cop to register a violation for source code that does this.
90b62af
to
b2d627e
Compare
👍 |
The Ruby parser appears to be completely fine with something like
The cop
Style/SpaceBeforeFirstArg
claims to check that "exactly one space is used between a method name and the first argument for method calls without parentheses", but does not account for source code that has zero spaces between the method name and the first argument.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.
rake generate_cops_documentation
(required only when you've added a new cop or changed the configuration/documentation of an existing cop).