You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #63 it was mentioned that a rule such as no-unbound-method should check for methods that are bound in the constructor (e.g. this.handleClick = this.handleClick.bind(this);) to avoid false positives. Although #63 was closed with the introduction of no-unbound-method this case does not seem to be implemented.
The text was updated successfully, but these errors were encountered:
In #63 it was mentioned that a rule such as
no-unbound-method
should check for methods that are bound in the constructor (e.g.this.handleClick = this.handleClick.bind(this);
) to avoid false positives. Although #63 was closed with the introduction ofno-unbound-method
this case does not seem to be implemented.The text was updated successfully, but these errors were encountered: