no-extra-bind
Configuration
rslint.config.ts
Rule Details
Disallows unnecessary calls to .bind(). If a function expression does not use this, calling .bind() on it is unnecessary. Arrow functions never have their own this binding, so .bind() on an arrow function is always unnecessary.
Examples of incorrect code for this rule:
Examples of correct code for this rule: