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中引入的。
资源
- 规则来源
- 文档来源
规则 | Rules相关
ESLint 是一个代码规范和错误检查工具,有以下几个特性。所有东西都是可以插拔的。你可以调用任意的 rule api 或者 formatter api 去打包或者定义 rule or formatter。任意的 rule 都是独立的。没有特定的 coding style,你可以自己配置。
主页 | https://eslint.org/ |
源码 | https://github.com/eslint/eslint |
发布版本 | 4.12.0 |