标签:www html wait zha erro UNC his class fun
[require-yield (Rules) - Eslint 中文开发手册
"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() { }
如果您不想通知没有yield表达式的生成器函数,那么禁用此规则是安全的。
require-awaitVersion此规则在ESLint 1.0.0-rc-1.Resources中引入规则来源文档来源
??Eslint 中文开发手册require-yield (Rules) – Eslint 中文开发手册 - Break易站
标签:www html wait zha erro UNC his class fun
原文地址:https://www.cnblogs.com/breakyizhan/p/13295469.html