{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"singleQuote": true,
"experimentalTailwindcss": {
"functions": ["clsx", "cn", "tv"]
}
}
Prettier:
const showLandingPage = true;
export const HeaderTitle: React.FC = () => {
return <div className={showLandingPage ? 'container pb-6' : 'hidden'}>title</div>;
};
oxfmt:
const showLandingPage = true;
export const HeaderTitle: React.FC = () => {
return <div className={showLandingPage ? "container pb-6" : 'hidden'}>title</div>;
};
For some reason "container pb-6" becomes double-quoted, but not 'hidden'.