Disallows space before block statements (for loops, control structures).
Type: Boolean
Value: true
"disallowSpaceBeforeBlockStatements": true
if (cond){
foo();
} else{
bar();
}
for (var e in elements){
bar(e);
}
while (cond){
foo();
}
if (cond) {
foo();
} else {
bar();
}
for (var e in elements) {
bar(e);
}
while (cond) {
foo();
}