版本

no-cond-assign

禁止在条件表达式中使用赋值运算符

推荐

配置文件中使用 @eslint/jsrecommended 配置启用此规则

在条件语句中,很容易将比较运算符(例如 ==)误输入为赋值运算符(例如 =)。例如

// Check the user's job title
if (user.jobTitle = "manager") {
    // user.jobTitle is now incorrect
}

在条件语句中使用赋值运算符是有正当理由的。但是,可能难以判断特定的赋值是否是有意的。

规则详情

此规则禁止在 ifforwhiledo...while 语句的测试条件中使用模棱两可的赋值运算符。

选项

此规则有一个字符串选项

  • "except-parens"(默认)允许在测试条件中赋值,仅当它们用括号括起来时(例如,允许在 whiledo...while 循环的测试中重新赋值变量)。
  • "always" 禁止在测试条件中进行所有赋值。

except-parens

对于此规则,使用默认 "except-parens" 选项的错误代码示例

在 Playground 中打开
/*eslint no-cond-assign: "error"*/

// Unintentional assignment
let x;
if (x = 0) {
    const b = 1;
}

// Practical example that is similar to an error
const setHeight = function (someNode) {
    do {
        someNode.height = "100px";
    } while (someNode = someNode.parentNode);
}

对于此规则,使用默认 "except-parens" 选项的正确代码示例

在 Playground 中打开
/*eslint no-cond-assign: "error"*/

// Assignment replaced by comparison
let x;
if (x === 0) {
    const b = 1;
}

// Practical example that wraps the assignment in parentheses
const setHeight = function (someNode) {
    do {
        someNode.height = "100px";
    } while ((someNode = someNode.parentNode));
}

// Practical example that wraps the assignment and tests for 'null'
const set_height = function (someNode) {
    do {
        someNode.height = "100px";
    } while ((someNode = someNode.parentNode) !== null);
}

always

对于此规则,使用 "always" 选项的错误代码示例

在 Playground 中打开
/*eslint no-cond-assign: ["error", "always"]*/

// Unintentional assignment
let x;
if (x = 0) {
    const b = 1;
}

// Practical example that is similar to an error
const setHeight = function (someNode) {
    do {
        someNode.height = "100px";
    } while (someNode = someNode.parentNode);
}

// Practical example that wraps the assignment in parentheses
const set_height = function (someNode) {
    do {
        someNode.height = "100px";
    } while ((someNode = someNode.parentNode));
}

// Practical example that wraps the assignment and tests for 'null'
const heightSetter = function (someNode) {
    do {
        someNode.height = "100px";
    } while ((someNode = someNode.parentNode) !== null);
}

对于此规则,使用 "always" 选项的正确代码示例

在 Playground 中打开
/*eslint no-cond-assign: ["error", "always"]*/

// Assignment replaced by comparison
let x;
if (x === 0) {
    const b = 1;
}

版本

此规则在 ESLint v0.0.9 中引入。

资源

更改语言