francoismassart / eslint-plugin-tailwindcss

ESLint plugin for Tailwind CSS usage
https://www.npmjs.com/package/eslint-plugin-tailwindcss
MIT License
1.38k stars 65 forks source link

Ability to configure not placing responsive (device-specific) classes at the end #332

Open rezelute opened 3 months ago

rezelute commented 3 months ago

When I do something like this: text-xl md:text-2xl mt-0 grow text-center The linter always places the md part at the end: text-xl mt-0 grow text-center md:text-2xl

Our team prefers having the responsive part of the class right next to the class rather than bolted on at the end.

Is this possible to change currently?