ユニークセレクタ

ルールごとにセレクタを自然にソートし、重複を削除します。

入力

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

出力

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