# no-with
禁止 with
语句
配置文件中的 "extends": "eslint:recommended" 属性启用了该规则
with
语句可能存在问题,因为它将对象的成员添加到当前作用域,从而无法判断块内的变量实际指的是什么。
# 规则详情
此规则不允许 with
语句。
如果 ESLint 在严格模式下解析代码,解析器(而不是这个规则)会报告错误。
此规则的错误代码示例:
/*eslint no-with: "error"*/
with (point) {
r = Math.sqrt(x * x + y * y); // is r a member of point?
}
此规则的正确代码示例:
/*eslint no-with: "error"*/
/*eslint-env es6*/
const r = ({x, y}) => Math.sqrt(x * x + y * y);
# 何时不使用
如果您有意使用 with
语句,则可以禁用此规则。