refactor(oxfmt,formatter): clean up tailwind sorter usage#23809
Merged
graphite-app[bot] merged 1 commit intoJun 29, 2026
Merged
Conversation
This was referenced Jun 26, 2026
This was referenced Jun 26, 2026
Member
Author
Merging this PR will not alter performance
Comparing Footnotes
|
ef4ba35 to
9c1b714
Compare
This was referenced Jun 26, 2026
60bf9fe to
d3f3837
Compare
9c1b714 to
bbe46c4
Compare
This was referenced Jun 29, 2026
fa23271 to
859924f
Compare
fa4b339 to
b672aef
Compare
Contributor
Merge activity
|
859924f to
e2b6b3b
Compare
b672aef to
1fa5775
Compare
e2b6b3b to
86adbd1
Compare
1fa5775 to
68bc720
Compare
Tailwind sorting is handled by JS, while the Rust side only collects class names. Therefore, not all options are used on the Rust side (in the case of CSS, a `bool` is sufficient). Because of this, unnecessary options are not passed to the Rust side. (Previously, they were being passed even though they were not used.)
86adbd1 to
96b48a3
Compare
68bc720 to
4e03018
Compare
Base automatically changed from
06-26-refactor_formatter_clarify_jsdoc_embedded_formatting
to
main
June 29, 2026 04:13
camc314
pushed a commit
that referenced
this pull request
Jul 3, 2026
Tailwind sorting is handled by JS, while the Rust side only collects class names. Therefore, not all options are used on the Rust side (in the case of CSS, a `bool` is sufficient). Because of this, unnecessary options are not passed to the Rust side. (Previously, they were being passed even though they were not used.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Tailwind sorting is handled by JS, while the Rust side only collects class names.
Therefore, not all options are used on the Rust side (in the case of CSS, a
boolis sufficient).Because of this, unnecessary options are not passed to the Rust side.
(Previously, they were being passed even though they were not used.)