disallowSpacesInForStatement

Disallow spaces in between for statement.

Type: Boolean

Value: true to disallow spaces in between for statement.

Example

"disallowSpacesInForStatement": true
Valid
for(var i=0;i<l;i++) {
    x++;
}
Invalid
for(var i = 0; i<l; i++) {
    x++;
}
for(var i = 0; i<l;i++) {
    x++;
}
for(var i = 0;i<l; i++) {
    x++;
}
Rule source
Test source