-- test.tsx -- == should format with comments == const t = () => ( <> {/* Comment 1 */} {/* Comment 2 */} {/* Comment 3 */} ); const u = () => { // Hello world }; [expect] const t = () => ( <> {/* Comment 1 */} {/* Comment 2 */} {/* Comment 3 */} ); const u = () => { // Hello world };