You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some people prefer keywords to be lowercase (sub main()). Others prefer uppercase (SUB main()), or title-case (Sub main()). Enforce those preferences with an eslint rule
Schema
Name: keyword-case
Options:
String (enum)
Values: "lower" | "title" | "upper"
Examples
iffoothenprint"bar"end if
Option
Allowed?
lower
✅
title
🚫
upper
🚫
IffooThenPrint"bar"End If
Option
Allowed?
lower
🚫
title
✅
upper
🚫
IFfooTHENPRINT"bar"END IF
Option
Allowed?
lower
🚫
title
🚫
upper
✅
The text was updated successfully, but these errors were encountered:
Some people prefer keywords to be lowercase (
sub main()
). Others prefer uppercase (SUB main()
), or title-case (Sub main()
). Enforce those preferences with aneslint
ruleSchema
Name:
keyword-case
Options:
"lower" | "title" | "upper"
Examples
lower
title
upper
lower
title
upper
lower
title
upper
The text was updated successfully, but these errors were encountered: