版本

no-extra-boolean-cast

禁止不必要的布尔强制转换

推荐

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

🔧 可修复

此规则报告的一些问题可以通过 --fix 命令行 选项自动修复

if 语句的测试等上下文中,表达式结果将已经被强制转换为布尔值,因此通过双重否定 (!!) 或 Boolean 调用强制转换为布尔值是多余的。例如,以下 if 语句是等效的

if (!!foo) {
    // ...
}

if (Boolean(foo)) {
    // ...
}

if (foo) {
    // ...
}

规则详细信息

此规则禁止不必要的布尔强制转换。

此规则的**不正确**代码示例

在游乐场中打开
/*eslint no-extra-boolean-cast: "error"*/

var foo = !!!bar;

var foo = !!bar ? baz : bat;

var foo = Boolean(!!bar);

var foo = new Boolean(!!bar);

if (!!foo) {
    // ...
}

if (Boolean(foo)) {
    // ...
}

while (!!foo) {
    // ...
}

do {
    // ...
} while (Boolean(foo));

for (; !!foo; ) {
    // ...
}

此规则的**正确**代码示例

在游乐场中打开
/*eslint no-extra-boolean-cast: "error"*/

var foo = !!bar;
var foo = Boolean(bar);

function qux() {
    return !!bar;
}

var foo = bar ? !!baz : !!bat;

选项

此规则有一个对象选项

  • "enforceForInnerExpressions" 设置为 true 时,除了检查默认上下文外,还会检查表达式中是否存在额外的布尔强制转换,这些表达式的结果用于布尔上下文中。请参阅下面的示例。默认值为 false,这意味着默认情况下,此规则不会警告内部表达式中的额外布尔强制转换。

已弃用: 对象属性 enforceForLogicalOperands 已弃用 (eslint#18222)。请改用 enforceForInnerExpressions

enforceForInnerExpressions

"enforceForInnerExpressions" 选项设置为 true 时,此规则的**不正确**代码示例

在游乐场中打开
/*eslint no-extra-boolean-cast: ["error", {"enforceForInnerExpressions": true}]*/

if (!!foo || bar) {
    //...
}

while (!!foo && bar) {
    //...
}

if ((!!foo || bar) && !!baz) {
    //...
}

var foo = new Boolean(!!bar || baz);

foo && Boolean(bar) ? baz : bat;

const ternaryBranches = Boolean(bar ? !!baz : bat);

const nullishCoalescingOperator = Boolean(bar ?? Boolean(baz));

const commaOperator = Boolean((bar, baz, !!bat));

// another comma operator example
for (let i = 0; console.log(i), Boolean(i < 10); i++) {
    // ...
}

"enforceForInnerExpressions" 选项设置为 true 时,此规则的**正确**代码示例

在游乐场中打开
/*eslint no-extra-boolean-cast: ["error", {"enforceForInnerExpressions": true}]*/

// Note that `||` and `&&` alone aren't a boolean context for either operand 
// since the resultant value need not be a boolean without casting.
var foo = !!bar || baz;

if (foo || bar) {
    //...
}

while (foo && bar) {
    //...
}

if ((foo || bar) && baz) {
    //...
}

var foo = new Boolean(bar || baz);

foo && bar ? baz : bat;

const ternaryBranches = Boolean(bar ? baz : bat);

const nullishCoalescingOperator = Boolean(bar ?? baz);

const commaOperator = Boolean((bar, baz, bat));

// another comma operator example
for (let i = 0; console.log(i), i < 10; i++) {
    // ...
}

// comma operator in non-final position
Boolean((Boolean(bar), baz, bat));

版本

此规则是在 ESLint v0.4.0 中引入的。

资源

更改语言