Eslint参考手册
规则 | Rules
guard-for-in
循环遍历对象for in
将包含通过原型链继承的属性。此行为可能会导致 for 循环中出现意外的项目。
for (key in foo) {
doSomething(key);
}
请注意,foo.hasOwnProperty(key)
在某些情况下,简单检查可能会导致错误; 见 no-prototype-builtins 。
规则细节
此规则旨在防止使用for in
循环而不过滤循环中的结果时可能出现的意外行为。因此,当for in
循环不会用if
语句过滤结果时,它会发出警告。
此规则的错误代码示例:
/*eslint guard-for-in: "error"*/
for (key in foo) {
doSomething(key);
}
此规则的正确代码示例:
/*eslint guard-for-in: "error"*/
for (key in foo) {
if (Object.prototype.hasOwnProperty.call(foo, key)) {
doSomething(key);
}
if ({}.hasOwnProperty.call(foo, key)) {
doSomething(key);
}
}
相关规则
- no-prototype-builtinsFurther Reading
- Exploring JavaScript for-in loops
- The pitfalls of using objects as maps in JavaScript
版本
这条规则是在 ESLint 0.0.6 中引入的。
资源
- Rule source
- Documentation source
规则 | Rules相关
ESLint 是一个代码规范和错误检查工具,有以下几个特性。所有东西都是可以插拔的。你可以调用任意的 rule api 或者 formatter api 去打包或者定义 rule or formatter。任意的 rule 都是独立的。没有特定的 coding style,你可以自己配置。
主页 | https://eslint.org/ |
源码 | https://github.com/eslint/eslint |
发布版本 | 4.12.0 |