osltest

Results 1 issues of osltest

According to the [description ](https://github.com/cartant/eslint-plugin-rxjs/blob/main/docs/rules/no-ignored-error.md) the no-ignored-error rule should produce an error for both way to handle a subsciption. For this way it works as expected: ``` source.subscribe((value) => console.log(value));...