naming-convention-setting 
Enforce naming convention on settings
INFO
☑️ The predefined configuration "mslint:recommended" enables this rule.
Rule details 
This rule enforces a few naming conventions for #Settings directives:
- All setting names must be prefixed with 
S_ 
Example of incorrect code for this rule:
maniascript
#Setting SettingA 1
#Setting SettingB 2 as "B"Example of correct code for this rule:
maniascript
#Setting S_SettingA 1
#Setting S_SettingB 2 as "B"