require-yield
要求生成器函数包含 yield
✅ Recommended
在 配置文件 中使用来自 @eslint/js
的 recommended
配置可以启用此规则
规则详情
¥Rule Details
此规则为没有 yield
关键字的生成器函数生成警告。
¥This rule generates warnings for generator functions that do not have the yield
keyword.
示例
¥Examples
此规则的错误代码示例:
¥Examples of incorrect code for this rule:
在线运行
/*eslint require-yield: "error"*/
function* foo() {
return 10;
}
此规则的正确代码示例:
¥Examples of correct code for this rule:
在线运行
/*eslint require-yield: "error"*/
function* foo() {
yield 5;
return 10;
}
function bar() {
return 10;
}
// This rule does not warn on empty generator functions.
function* baz() { }
何时不使用
¥When Not To Use It
如果你不想通知没有 yield
表达式的生成器函数,那么禁用此规则是安全的。
¥If you don’t want to notify generator functions that have no yield
expression, then it’s safe to disable this rule.
相关规则
版本
此规则是在 ESLint v1.0.0-rc-1 中引入。