~~ functionExpression.bracePosition: nextLine, parameters.preferHanging: always, lineWidth: 35 ~~
== should use the next line for the brace position ==
const t = function() {
};

[expect]
const t = function()
{
};

== should use the next line for the brace position when hanging ==
const t = function(someParams, goingToNewLine) {
};

[expect]
const t = function(someParams,
    goingToNewLine)
{
};
