We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What version of prettier-plugin-tailwindcss are you using?
prettier-plugin-tailwindcss
v0.6.9
What version of Tailwind CSS are you using?
v3.4.17
What package manager are you using?
pnpm
Reproduction URL
import * as React from 'react'; const isExtendable = false; export default function BasicAlerts() { return ( <div className={`MuiApi-item-root${isExtendable ? ' MuiApi-item-header-extendable' : ''}`} /> ); }
Describe your issue
The above code snippet is converted into:
- className={`MuiApi-item-root${isExtendable ? ' MuiApi-item-header-extendable' : ''}`} + className={`MuiApi-item-root${isExtendable ? 'MuiApi-item-header-extendable' : ''}`}
This is similar to #328.
One workaround in the meantime is to add // prettier-ignore.
// prettier-ignore
Off-topic Adding this plugin increase prettier run time by 44%.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What version of
prettier-plugin-tailwindcss
are you using?v0.6.9
What version of Tailwind CSS are you using?
v3.4.17
What package manager are you using?
pnpm
Reproduction URL
Describe your issue
The above code snippet is converted into:
This is similar to #328.
One workaround in the meantime is to add
// prettier-ignore
.Off-topic Adding this plugin increase prettier run time by 44%.
The text was updated successfully, but these errors were encountered: