显示数组中意外使用逗号、无序列的esint
我有以下代码,eslint一直显示no-sequences
警告。
const full = {};
["firstname", "lastname", "spouse"].forEach(key => {
})
["cellphone", "phone"].forEach(key => {
})
虽然错误出现在第二个forEach
挡路上,但只有在我放置第一个forEach
挡路时才会出现警告。这是eslint错误吗?
here是eslint演示编辑器上的链接
解决方案
由于您的代码没有分号,因此您基本上是在尝试访问第一个forEach
:
["firstname", "lastname", "spouse"].forEach(key => {
})["cellphone", "phone"].forEach(key => {
})
当然这是不正确的。要解决此问题,只需添加分号:
["firstname", "lastname", "spouse"].forEach(key => {
}); // Add a semicolon here
["cellphone", "phone"].forEach(key => {
}); // Here it is not necessary, but it is a good practice to avoid that kind of error
这将修复错误,因为分号指向statement的末尾,因此ESLint将能够理解有两个不同的语句。
相关文章