Disallows space before ()
or {}
in named function expressions.
Type: Object
Values: "beforeOpeningRoundBrace"
and "beforeOpeningCurlyBrace"
as child properties.
Child properties must be set to true
.
"disallowSpacesInNamedFunctionExpression": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
}
var x = function a(){};
var x = function a() {};
var x = function a (){};
var x = function a () {};