no-this-alias
Configuration
rslint.config.ts
Rule Details
Disallow aliasing this.
Assigning this to a variable (commonly named self or that) is a legacy pattern that predates arrow functions. Arrow functions automatically capture the surrounding this, making this aliasing unnecessary.
Examples of incorrect code for this rule:
Examples of correct code for this rule: