This rule prevents the use of explicit type arguments when the type arguments can be inferred.
Examples of incorrect code for this rule:
import { BehaviorSubject } from "rxjs";
const subject = new BehaviorSubject<number>(42);
Examples of correct code for this rule:
import { BehaviorSubject } from "rxjs";
const subject = new BehaviorSubject(42);
This rule has no options.