cartant / eslint-plugin-rxjs

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

Additional filters for no-ignored-error #118

Open undsoft opened 1 year ago

undsoft commented 1 year ago

I've been considering adding no-ignored-error to our Angular project.

Unfortunately in its vanilla form the rule is too broad and flags too may cases, where I don't care about error handling. For example I care about network requests failing, but I don't really care about errors originating from Angular forms.

It would be good to have a way to narrow the rule down, for example by specifying a regex or a set of classes that create an observable.