獨特選擇器 (uniqueSelectors)

針對每個規則自然排序選擇器,並移除重複的選擇器。

範例

輸入

.box, .boxB, .boxA, .box {
    color: red;
}

輸出

.box, .boxA, .boxB {
    color: red;
}