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