Biome sorts Tailwind classes incorrectly? #5331
ryantbrown
started this conversation in
General
Replies: 1 comment
-
Is there a reference you can share? It doesn't feel right to change something without understanding the change and prove that it won't break people's code. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Specifically, it seems to disregard logical groupings, which can be seen with the following:
flex flex-col h-screen
sorts toflex h-screen flex-col
grid grid-cols-12 w-full
sorts togrid w-full grid-cols-12
flex
/grid
andflex-*
/grid-*
properties should be grouped and never separated by other classes, regardless of what those classes are related to.Why is this the case?
Are maintainers open to changing this?
Beta Was this translation helpful? Give feedback.
All reactions