no-continue 
Forbid the use of the continue statement
Rule details 
This rule prohibits using the continue statement.
Example of incorrect code for this rule:
maniascript
main() {
  for (A, 1, 10) {
    if (A % 2 == 0) continue;
    log(A);
  }
}Example of correct code for this rule:
maniascript
main() {
  for (A, 1, 10) {
    if (A % 2 != 0) {
      log(A);
    }
  }
}