-- file.tsx --
== should format ==
const t = <test test  = "5" other =  {4}/>

[expect]
const t = <test test="5" other={4} />;

== should not newline in tagged template ==
export function Footer() {
  return (
    <testing class={someTag`mt-16 flex justify-center items-center flex-col border-none bg-transparent text-black`} />
  );
}

[expect]
export function Footer() {
    return (
        <testing
            class={someTag`mt-16 flex justify-center items-center flex-col border-none bg-transparent text-black`}
        />
    );
}
