no-needless-continue Disallow continue where control already proceeds to the same iteration A continue at the end of its target loop path repeats the control transfer already performed by ordinary completion. Instead, you SHOULD remove the redundant statement and let the iteration finish normally. - Category: style - Level: warning - Fix: automatic - Scope: module Reported function visit(values: int32[]): void { for (const value of values) { value; continue; } } Accepted function visit(values: int32[]): void { for (const value of values) { value; } } Prior art - Clippy ยท needlesscontinue language/linter/src/rules/style/noneedlesscontinue.rs:6