no-this-before-super
Disallow use of this/super before calling super() in constructors. (no-this-before-super)
"extends": "eslint:recommended"
配置文件中的属性启用此规则。
在派生类的构造函数中,如果在调用之前使用this
/ ,则会引发参考错误。supersuper()
此规则检查this
/ super
关键字在构造函数,然后报告那些之前super()
。
规则细节
这条规则的目的是在呼叫前标记this
/ super
关键字super()
。
例子
此规则的错误
代码示例:
/*eslint no-this-before-super: "error"*/
/*eslint-env es6*/
class A extends B {
constructor() {
this.a = 0;
super(
}
}
class A extends B {
constructor() {
this.foo(
super(
}
}
class A extends B {
constructor() {
super.foo(
super(
}
}
class A extends B {
constructor() {
super(this.foo()
}
}
此规则的正确
代码示例:
/*eslint no-this-before-super: "error"*/
/*eslint-env es6*/
class A {
constructor() {
this.a = 0; // OK, this class doesn't have an `extends` clause.
}
}
class A extends B {
constructor() {
super(
this.a = 0; // OK, this is after `super()`.
}
}
class A extends B {
foo() {
this.a = 0; // OK. this is not in a constructor.
}
}
何时不使用它
如果您不想在构造函数中使用this
/ super
之前收到通知super()
,可以安全地禁用此规则。
版本
该规则在 ESLint 0.24.0 中引入。