The effects failures if an observable returned by a function is neither assigned to a variable or property or passed to a function.
Examples of incorrect code for this rule:
import { of } from "rxjs";
of(42, 54);
Examples of correct code for this rule:
import { of } from "rxjs";
const answers = of(42, 54);
This rule has no options.