uniqueSelectors
Naturally sorts selectors for every rule, and removes duplicates.
Example
Input
.box, .boxB, .boxA, .box {
color: red;
}Output
.box, .boxA, .boxB {
color: red;
}Naturally sorts selectors for every rule, and removes duplicates.
.box, .boxB, .boxA, .box {
color: red;
}.box, .boxA, .boxB {
color: red;
}