no-unreachable
禁止在 return
、throw
、continue
和 break
语句后出现无法访问的代码
✅ 推荐
在 配置文件中使用 @eslint/js
中的 recommended
配置启用此规则
因为 return
、throw
、continue
和 break
语句无条件地退出代码块,所以它们之后的任何语句都无法执行。无法访问的语句通常是一个错误。
function fn() {
x = 1;
return x;
x = 3; // this will never execute
}
另一种错误是在子类中定义实例字段,而子类的构造函数不调用 super()
。子类的实例字段仅在 super()
之后添加到实例。如果没有 super()
调用,则永远不会应用它们的定义,因此是无法访问的代码。
class C extends B {
#x; // this will never be added to instances
constructor() {
return {};
}
}
规则详情
此规则禁止在 return
、throw
、continue
和 break
语句之后出现无法访问的代码。此规则还会标记构造函数没有 super()
调用的子类中实例字段的定义。
此规则的错误代码示例
在 Playground 中打开
/*eslint no-unreachable: "error"*/
function foo() {
return true;
}
function bar() {
throw new Error("Oops!");
}
while(value) {
break;
}
throw new Error("Oops!");
function baz() {
if (Math.random() < 0.5) {
return;
} else {
throw new Error();
}
}
此规则的正确代码示例,因为 JavaScript 函数和变量提升
在 Playground 中打开
/*eslint no-unreachable: "error"*/
function foo() {
return bar();
function bar() {
return 1;
}
}
function bar() {
return x;
var x;
}
switch (foo) {
case 1:
break;
var x;
}
此规则的其他错误代码示例
在 Playground 中打开
/*eslint no-unreachable: "error"*/
class C extends B {
// unreachable
constructor() {
return {};
}
}
此规则的其他正确代码示例
在 Playground 中打开
/*eslint no-unreachable: "error"*/
class D extends B {
#x;
#y = 1;
a;
b = 1;
constructor() {
super();
}
}
class E extends B {
#x;
#y = 1;
a;
b = 1;
// implicit constructor always calls `super()`
}
class F extends B {
static #x;
static #y = 1;
static a;
static b = 1;
constructor() {
return {};
}
}
由 TypeScript 处理
当使用 TypeScript 时,禁用此规则是安全的,因为 TypeScript 的编译器会强制执行此检查。
TypeScript 必须配置为 allowUnreachableCode: false
才能将其视为无法访问的代码错误。
版本
此规则在 ESLint v0.0.6 中引入。