~~ tupleType.trailingCommas: always ~~
== should format with trailing commas when multiline ==
type Test = [
    string    ,
    number
];

[expect]
type Test = [
    string,
    number,
];

== should format with trailing commas when single line ==
type Test = [string    , number ];

[expect]
type Test = [string, number,];
