我正在使用 JSHint 进行 linting,并且在使用 co 时遇到问题,在yield
语句中的生成器中我得到 ERROR: line 18 col 28 Missing semicolon。
co(function *() {
let orgAccounts = yield OrgAccount.findAll({accountId: account.id});
}).catch((err) => {
console.log(err);
});
.jshintrc 文件如下所示:
{
"expr": true,
"node": true,
"esversion": 6,
"bitwise": true,
"eqeqeq": true,
"immed": true,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"undef": true,
"smarttabs": true,
"asi": true,
"debug": true,
"noyield": true
}
我该如何解决?