no-empty-static-block

不允许空静态块

空静态块虽然不是技术上的错误,但通常是由于未完成的重构而发生的。它们在阅读代码时会引起混乱。

规则详情

此规则不允许空静态块。此规则忽略包含注释的静态块。

此规则的错误代码示例:

/*eslint no-empty-static-block: "error"*/

class Foo {
    static {}
}

此规则的正确代码示例:

/*eslint no-empty-static-block: "error"*/

class Foo {
    static {
        bar();
    }
}

class Foo {
    static {
        // comment
    }
}

何时不使用

X0uMLgzsGgGRPBn5k4JMg1S8bhat8Ap0Uoufw6rFHUNOvfVC3mXGigBzEv/I1j2OkFGbVMSZfTycjJLUUAyjoA==