Eslint
规则 | Rules

no-empty

禁止空块语句(非空)

"extends": "eslint:recommended"配置文件中的属性启用此规则。

空块语句虽然不是技术上的错误,但通常是由于未完成的重构而发生的。阅读代码时会造成混淆。

规则细节

该规则不允许空块语句。 该规则忽略包含注释的块语句(例如,在一个空catch或最后一个try语句块中,以指示无论错误如何,执行都应该继续)。

此规则的错误代码示例:

/*eslint no-empty: "error"*/ if (foo) { } while (foo) { } switch(foo) { } try { doSomething( } catch(ex) { } finally { }

此规则的正确代码示例:

/*eslint no-empty: "error"*/ if (foo) { // empty } while (foo) { /* empty */ } try { doSomething( } catch (ex) { // continue regardless of error } try { doSomething( } finally { /* continue regardless of error */ }

选项

该规则有一个例外的对象选项:

  • "allowEmptyCatch": true允许空catch子句(即不包含注释)

allowEmptyCatch

此规则的附加正确代码示例包含以下{ "allowEmptyCatch": true }选项:

/* eslint no-empty: ["error", { "allowEmptyCatch": true }] */ try { doSomething( } catch (ex) {} try { doSomething( } catch (ex) {} finally { /* continue regardless of error */ }

何时不使用它

如果您有意使用空块语句,则可以禁用此规则。

相关规则

  • no-empty-function

版本

这条规则是在ESLint 0.0.2中引入的。

资源