Disallows space after opening round bracket and before closing.
Types: Boolean
or Object
Values: Either true
or Object with "only"
property as an array of tokens
"disallowSpacesInsideParentheses": true
true
valuevar x = (1 + 2) * 3;
only
value"disallowSpacesInsideParentheses": { "only": [ "{", "}", "\"" ] }
var x = ( 1 + 2 );
var x = foo({});
var x = foo("1");
var x = foo( {} );