docs/src/rules/generator-star.md
Enforces consistent spacing around the asterisk in generator functions.
::: important This rule was removed in ESLint v1.0.0 and replaced by the generator-star-spacing rule. :::
Generators are a new type of function in ECMAScript 6 that can return multiple values over time.
These special functions are indicated by placing an * after the function keyword.
Here is an example of a generator function:
function* generator() {
yield "44";
yield "55";
}
This is also valid:
function *generator() {
yield "44";
yield "55";
}
This is valid as well:
function * generator() {
yield "44";
yield "55";
}
To keep a sense of consistency when using generators this rule enforces a single position for the *.
This rule enforces that the * is either placed next to the function keyword or the name of the function. The single
option for this rule is a string specifying the placement of the asterisk. For this option you may pass
"start", "middle" or "end". The default is "end".
You can set the style in configuration like this:
"generator-star": ["error", "start"]
When using "start" this placement will be enforced:
function* generator() {
}
When using "middle" this placement will be enforced:
function * generator() {
}
When using "end" this placement will be enforced:
function *generator() {
}
When using the expression syntax "start" will be enforced here:
var generator = function* () {
}
When using the expression syntax "middle" will be enforced here:
var generator = function * () {
}
When using the expression syntax "end" will be enforced here:
var generator = function *() {
}
When using the expression syntax this is valid for both "start" and "end":
var generator = function*() {
}
The shortened object literal syntax for generators is not affected by this rule.
If your project will not be using generators you do not need this rule.