版本

no-lone-blocks

禁止不必要的嵌套块

在 JavaScript 中,ES6 之前,由花括号分隔的独立代码块不会创建新的作用域,也没有任何用处。例如,这些花括号对 foo 没有任何作用

{
    var foo = bar();
}

在 ES6 中,如果存在块级绑定(letconst)、类声明或函数声明(在严格模式下),代码块可能会创建新的作用域。在这些情况下,块不被认为是冗余的。

规则详情

此规则旨在消除脚本顶层或其他块内不必要且可能造成混淆的块。

此规则的错误代码示例

在游乐场中打开
/*eslint no-lone-blocks: "error"*/

{}

if (foo) {
    bar();
    {
        baz();
    }
}

function bar() {
    {
        baz();
    }
}

{
    function foo() {}
}

{
    aLabel: {
    }
}

class C {
    static {
        {
            foo();
        }
    }
}

此规则的正确代码示例

在游乐场中打开
/*eslint no-lone-blocks: "error"*/

while (foo) {
    bar();
}

if (foo) {
    if (bar) {
        baz();
    }
}

function bar() {
    baz();
}

{
    let x = 1;
}

{
    const y = 1;
}

{
    class Foo {}
}

aLabel: {
}

class C {
    static {
        lbl: {
            if (something) {
                break lbl;
            }

            foo();
        }
    }
}

使用 ES6 环境和通过 ESLint 配置中的 "parserOptions": { "sourceType": "module" } 或代码中的 "use strict" 指令的严格模式的此规则的正确代码示例

在游乐场中打开
/*eslint no-lone-blocks: "error"*/

"use strict";

{
    function foo() {}
}

版本

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

资源

更改语言