no-this-alias
Disallow aliasing this.
This rule prohibits assigning variables to this.
Rule Details
Rationale from TSLint:
Assigning a variable to
thisinstead of properly using arrow lambdas may be a symptom of pre-ES6 practices or not managing scope well.Instead of storing a reference to
thisand using it inside afunction () {:const self = this;
setTimeout(function () {
self.doWork();
});Use
() =>arrow lambdas, as they preservethisscope for you:setTimeout(() => {
this.doWork();
});
Examples of incorrect code for this rule:
(see the rationale above)
Examples of correct code for this rule:
(see the rationale above)
Options
You can pass an object option:
{
  "@typescript-eslint/no-this-alias": [
    "error",
    {
      "allowDestructuring": false, // Disallow `const { props, state } = this`; true by default
      "allowedNames": ["self"] // Allow `const self = this`; `[]` by default
    }
  ]
}
When Not To Use It
If you need to assign this to variables, you shouldn’t use this rule.
Related To
- TSLint: 
no-this-assignment 
Attributes
- Configs:
- ✅ Recommended
 - 🔒 Strict
 
 - 🔧 Fixable
 - 💭 Requires type information