This rule effects failures if async functions are passed to subscribe
.
Examples of incorrect code for this rule:
import { of } from "rxjs";
of(42).subscribe(async () => console.log(value));
Examples of correct code for this rule:
import { of } from "rxjs";
of(42).subscribe(() => console.log(value));
This rule has no options.