Skip to content

max-lines

Enforce a maximum number of lines in three contexts: function, label and main

INFO

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

Rule details

This rule limits the number of lines of code in three contexts: function, label and main.

Settings

  • maximum
    • function the maximum number of lines of code in functions. Default 1000.
    • label the maximum number of lines of code in labels. Default 1000.
    • main the maximum number of lines of code in main. Default 1000.

Example of incorrect code for this rule:

maniascript
/*
{
  "maximum" = {
    "function" = 2,
    "label" = 2,
    "main" = 2
  }
}
*/
Void Function() {
  declare Integer A = 1;
  declare Integer B = 2;
  declare Integer C = 3;
}

***Label***
***
declare Integer A = 1;
declare Integer B = 2;
declare Integer C = 3;
***

main() {
  declare Integer A = 1;
  declare Integer B = 2;
  declare Integer C = 3;
}

Example of correct code for this rule:

maniascript
/*
{
  "maximum" = {
    "function" = 2,
    "label" = 2,
    "main" = 2
  }
}
*/
Void Function() {
  declare Integer A = 1;
  declare Integer B = 2;
}

***Label***
***
declare Integer A = 1;
declare Integer B = 2;
***

main() {
  declare Integer A = 1;
  declare Integer B = 2;
}

Resources