~~ conditionalExpression.operatorPosition: maintain, conditionalExpression.preferSingleLine: false, lineWidth: 40 ~~
== should format ==
test? 1: 2;
test
    ? 1: 2;
test ? 1
: 2;
test? testingthis: testingthismoretesttest;

[expect]
test ? 1 : 2;
test
    ? 1 :
    2;
test ?
    1
    : 2;
test
    ? testingthis
    : testingthismoretesttest;
