-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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
Breaking: update eslint:recommended for 4.0.0 (fixes #8236) #8372
Conversation
This adds no-useless-escape, no-compare-neg-zero, and array-callback-return to eslint:recommended.
@not-an-aardvark, thanks for your PR! By analyzing the history of the files in this pull request, we identified @kaicataldo, @nzakas and @vitorbal to be potential reviewers. |
LGTM |
@@ -212,7 +212,7 @@ module.exports = { | |||
"no-with": "off", | |||
"nonblock-statement-body-position": "off", | |||
"object-curly-newline": "off", | |||
"object-curly-spacing": ["off", "never"], | |||
"object-curly-spacing": "off", |
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.
The default for object-curly-spacing
is "never"
anyway, so I don't think this was doing anything. It was added in b2aedfe and seems to have been a mistake.
What is the purpose of this pull request? (put an "X" next to item)
[x] Add something to the core
What changes did you make? (Give an overview)
This adds no-useless-escape, no-compare-neg-zero, and array-callback-return to eslint:recommended.
Is there anything you'd like reviewers to focus on?
Nothing in particular