Skip to content

for-direction

Check that for loop start value is smaller than stop value

INFO

☑️ The predefined configuration "mslint:recommended" enables this rule.

Rule details

This rule checks that the starting value of the for loop is less than the ending value.

Example of incorrect code for this rule:

maniascript
main() {
  for (A, 10, 1) {}
  for (A, 10, 1, -2) {}
}

Example of correct code for this rule:

maniascript
main() {
  for (A, 1, 10) {}
  for (A, 1, 10, -2) {}
}

Resources