Disallows spaces before commas
Types: Boolean or Object
Values:
Boolean: true to disallow any spaces before any commaObject: "allExcept" array of exceptions"sparseArrays" to allow spaces in place of absent values in sparse arrays"disallowSpaceBeforeComma": true
"disallowSpaceBeforeComma": {"allExcept": ["sparseArrays"]}
truevar a, b;
truevar a ,b;
[a, b, , , c]
{"allExcept": ["sparseArrays"]}[a, b, , , c]
{"allExcept": ["sparseArrays"]}[a , b , , , c]