We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
http://eslint.org/docs/rules/rest-spread-spacing
This one should be uncontroversial:
// BAD fn(... args) [... arr, 4, 5, 6] let [a, b, ... arr] = [1, 2, 3, 4, 5] function fn(... args) { console.log(args) } let { x, y, ... z } = { x: 1, y: 2, a: 3, b: 4 } let n = { x, y, ... z } // GOOD fn(...args) [...arr, 4, 5, 6] let [a, b, ...arr] = [1, 2, 3, 4, 5] function fn(...args) { console.log(args) } let { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 } let n = { x, y, ...z }
The text was updated successfully, but these errors were encountered:
No test failures at all on this one, and it's pretty obvious, so I'm just going to merge straight away so it can go into the standard v8 RC 👍
1..424 # tests 424 # pass 424 # ok
Collaborators/community folks, let me know if you disagree or have thoughts.
Sorry, something went wrong.
standard/eslint-config-standard@df5deba
No branches or pull requests
http://eslint.org/docs/rules/rest-spread-spacing
This one should be uncontroversial:
The text was updated successfully, but these errors were encountered: