This rule effects failures if the buffer size of a replay buffer is not explicitly specified.
Examples of incorrect code for this rule:
import { ReplaySubject } from "rxjs";
const subject = new ReplaySubject<number>();
Examples of correct code for this rule:
import { ReplaySubject } from "rxjs";
const subject = new ReplaySubject<number>(1);
import { ReplaySubject } from "rxjs";
const subject = new ReplaySubject<number>(Infinity);
This rule has no options.