naming-convention-command 
Enforce naming convention on commands
INFO
☑️ The predefined configuration "mslint:recommended" enables this rule.
Rule details 
This rule enforces a few naming conventions for #Command directives:
- All command names must be prefixed with 
Command_ 
Example of incorrect code for this rule:
maniascript
#Command A (Boolean)
#Command Com_B (Integer) as "B"Example of correct code for this rule:
maniascript
#Command Command_A (Boolean)
#Command Command_B (Integer) as "B"