cartant / eslint-plugin-rxjs

ESLint rules for RxJS
MIT License
312 stars 37 forks source link

Request: Ignore Angular signals for "no-unbound-methods" #137

Open gizm0bill opened 2 weeks ago

gizm0bill commented 2 weeks ago

The problem is that Angular signals (maybe other frameworks' signals also) are functions and a this rule enforces binding them to something. If you rebind an Angular signal it will lose its substance, i.e. the SIGNAL Symbol, rendering the isSignal check useless for example.

Please add an exception on this rule for this case!

Thank you!