require-yield

要求生成器函数包含 yield

配置文件 中的 "extends": "eslint:recommended" 属性启用了该规则

规则详情

此规则为没有 yield 关键字的生成器函数生成警告。

示例

此规则的错误代码示例:

/*eslint require-yield: "error"*/
/*eslint-env es6*/

function* foo() {
  return 10;
}

此规则的正确代码示例:

/*eslint require-yield: "error"*/
/*eslint-env es6*/

function* foo() {
  yield 5;
  return 10;
}

function foo() {
  return 10;
}

// This rule does not warn on empty generator functions.
function* foo() { }

何时不使用

j9YkkAB9zCmESjEPyFE56Z6wFxnFZxhXwZUiW7tM1ltcduwzhZ/xWcGMBeqg93jzx63r02iYGUbUb3ChoPGcOFcWK3ixoOvXwvHSo0qe8ZgsaTlXJM0OSbiAjPhAFSVelF+VZ0spmueXcqh/gQZgGsD/29Yo+eULCOq1Du25COg=