Disallows space before () or {} in function declarations.
Type: Object
Values: "beforeOpeningRoundBrace" and "beforeOpeningCurlyBrace" as child properties.
Child properties must be set to true.
"disallowSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
}
function a(){}
function a() {}
function a (){}
function a () {}