It is recommended that you add a description to the comment explaining why the rule was disabled. The description comes after the configuration and must be separated by two or more consecutive - characters.
maniascript
main() { sleep(1); // @mslint-disable-line no-sleep -- Describe why the rule was disabled here /* @mslint-disable-next-line no-sleep, no-wait, no-log -- Describe why the rule was disabled here */ sleep(1); wait(True); log("");}
Configuration Comment
Disable Rules
Rules can be disabled within a file using specially formatted comments.
To disable all rules on the current or next line:
To disable a specific rule on the current or next line:
To disable multiple rules on the current or next line:
It is recommended that you add a description to the comment explaining why the rule was disabled. The description comes after the configuration and must be separated by two or more consecutive
-
characters.