Eslint: Unexpected literal in error position of callback standard/no-callback-literal
·
参考自:https://segmentfault.com/q/1010000013146699
https://github.com/standard/standard/issues/623
eslint标准模式-回调报错,见下图
callback(true/false)的回调函数写法是eslint standard 标准中不允许的写法,而不是es6中的规定
解决方式:
1、使用callback(new Error(true))代替,或者使用变量代替true/false,例如flag = true; cb(flag)等,下图是可以使用的写法
2、在相应的.eslintrc.*文件中,配置相应的rules,添加如下语句来忽略这个
"no-callback-literal": 0
经实践,第一种方式可用,但是第二种方式设置没有用(环境是"eslint": "^4.15.0")
更多推荐
已为社区贡献2条内容
所有评论(0)