Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up(generators) Missing space before * #683
Comments
This comment has been minimized.
This comment has been minimized.
saadq
commented
Nov 16, 2016
•
|
The whitespace part doesn't really matter, it's just personal preference. Any of these would work fine: function* name () {
}
function *name () {
}
function * name () {
}feross mentioned here that enforcing the whitespace around the |
This comment has been minimized.
This comment has been minimized.
|
Thanks, I tired searching for 'genrators' before creating issue but that closed issue didn't show up :( Maybe worth adding that rule to http://standardjs.com/rules.html ? |
elf-pavlik
closed this
Nov 16, 2016
lock
bot
locked as resolved and limited conversation to collaborators
May 10, 2018
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
elf-pavlik commentedNov 13, 2016
function* - JavaScript | MDN
I think should not generate warning about missing space before
*in declaration of generator function.