no-cond-assign
禁止在条件表达式中使用赋值运算符
✅ 推荐
在 配置文件 中使用来自 @eslint/js
的 recommended
配置会启用此规则
在条件语句中,很容易将比较运算符(例如 ==
)误写为赋值运算符(例如 =
)。例如
// Check the user's job title
if (user.jobTitle = "manager") {
// user.jobTitle is now incorrect
}
在条件语句中使用赋值运算符存在有效的原因。但是,很难判断特定的赋值是否是有意的。
规则详情
此规则禁止在 if
、for
、while
和 do...while
语句的测试条件中使用模棱两可的赋值运算符。
选项
此规则有一个字符串选项
"except-parens"
(默认)仅在赋值运算符被括号括起来时才允许在测试条件中使用(例如,允许在while
或do...while
循环的测试中重新赋值变量)"always"
禁止在测试条件中使用所有赋值运算符
except-parens
使用默认的 "except-parens"
选项时,此规则的错误代码示例
在代码游乐场中打开
/*eslint no-cond-assign: "error"*/
// Unintentional assignment
var x;
if () {
var b = 1;
}
// Practical example that is similar to an error
var setHeight = function (someNode) {
do {
someNode.height = "100px";
} while ();
}
使用默认的 "except-parens"
选项时,此规则的正确代码示例
在代码游乐场中打开
/*eslint no-cond-assign: "error"*/
// Assignment replaced by comparison
var x;
if (x === 0) {
var b = 1;
}
// Practical example that wraps the assignment in parentheses
var setHeight = function (someNode) {
do {
someNode.height = "100px";
} while ((someNode = someNode.parentNode));
}
// Practical example that wraps the assignment and tests for 'null'
var setHeight = function (someNode) {
do {
someNode.height = "100px";
} while ((someNode = someNode.parentNode) !== null);
}
always
使用 "always"
选项时,此规则的错误代码示例
在代码游乐场中打开
/*eslint no-cond-assign: ["error", "always"]*/
// Unintentional assignment
var x;
if () {
var b = 1;
}
// Practical example that is similar to an error
var setHeight = function (someNode) {
do {
someNode.height = "100px";
} while ();
}
// Practical example that wraps the assignment in parentheses
var setHeight = function (someNode) {
do {
someNode.height = "100px";
} while (());
}
// Practical example that wraps the assignment and tests for 'null'
var setHeight = function (someNode) {
do {
someNode.height = "100px";
} while (() !== null);
}
使用 "always"
选项时,此规则的正确代码示例
在代码游乐场中打开
/*eslint no-cond-assign: ["error", "always"]*/
// Assignment replaced by comparison
var x;
if (x === 0) {
var b = 1;
}
相关规则
版本
此规则在 ESLint v0.0.9 中引入。