~~ arrowFunction.bracePosition: sameLine, parameters.preferHanging: always, lineWidth: 30 ~~
== should use the same line for the brace position ==
const t = () =>
{
};

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

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

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