In my prettier.config.js file, I have the following:
module.exports = {
tailwindAttributes: ["class:list"],
};
This allows for prettier to reorder code such as
class:list="..."
However, if i want to add other classes via properties e.g.
class:list={...}
class:list={[...]}
It does not reorder tailwind class names.
Is there any way around this?