unexpectedUnexpected constant condition.small-rules/no-constant-condition-with-breakDisallow constant conditions, but allow constant loops that include loop exits such as break, return, or configured calls.
unexpectedUnexpected constant condition.This rule accepts one options object after the severity.
if (true) { doThing(); }if (condition) { doThing(); }