This rule effects failures if the value received by a takeWhile
callback is not used in an expression.
Examples of incorrect code for this rule:
import { takeWhile } from "rxjs/operators";
let flag = true;
const whilst = source.pipe(takeWhile(() => flag));
Examples of correct code for this rule:
import { takeWhile } from "rxjs/operators";
const whilst = source.pipe(takeWhile(value => value));
This rule has no options.