-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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 block comments to be balanced #572
Comments
LGTM |
This will be included in standard v8 |
I kinda like being able to write eslint directives in a "style-violating" way (and wish I could do it with more of them, like |
@Kovensky Interesting point. Your last point is correct. If the rule isn't getting picked up (due to a typo) then you'll get a warning because the rule you were trying to disable wasn't actually disabled. I think this rule change is a good move since there were 2 ways to do something, and now there will be only one. |
http://eslint.org/docs/rules/spaced-comment
This rule (which is already enabled in
standard
) has a new option to enforce "balanced" spacing in block comments.For example, this would be an error:
/* This is a block comment*/
It would be need to be rewritten like this:
/* This is a block comment */
As part of this change, I propose that we remove the exceptions that allow the keywords "global", "global", "eslint", and "eslint-disable" to be used without a space:
/*global myVar */
It's odd to enforce a space at the end while making it optional at the beginning for these keywords. With these exceptions removed, this is how these comments would need to be written:
/* global myVar */
Eslint handles space or no-space versions of these directives without issue.
The number of affected repos is moderate (2%):
Thoughts?
The text was updated successfully, but these errors were encountered: