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.
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.