Disallows space after keyword.
Types: Array
or Boolean
Values: Array of quoted keywords or true
to disallow spaces after all possible keywords.
"disallowSpaceAfterKeywords": [
"if",
"else",
"for",
"while",
"do",
"switch",
"try",
"catch"
]
if(x > y) {
y++;
}
if (x > y) {
y++;
}