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() { // @mslint-disable no-sleep -- Describe why the rule was disabled here sleep(1); // @mslint-enable no-sleep 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.
Disable all rules in a part of a file 
Disable a specific rule in a part of a file 
Disable multiple rules in a part of a file 
It is possible to mix and match
@mslint-disableand@mslint-enablewithout using the same rules:Disable all rules on the current or next line 
Disable a specific rule on the current or next line 
Disable multiple rules on the current or next line 
Description 
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.