Hey!
It looks like the formatter is incorrectly formatting CSS pseudo-element selectors by moving one of the colons from the double-colon syntax (::).
I have the following class in my app:
[&.select::picker(select)]:bg-base-100
When I run mix format with the TailwindFormatter enabled, it becomes:
:[&.select:picker(select)]:bg-base-100
Note that one colon is moved to the front. This changes the behavior and breaks my app.