Skip to content

no-log

Forbid the use of the log() function

Rule details

This rule prohibits log statements.

Example of incorrect code for this rule:

maniascript
main() {
  log("This");
}

Example of correct code for this rule:

maniascript
main() {
  NotLogging("This");
}

Resources