ルールセット内で重複している CSS プロパティを報告します。 ショートハンドプロパティを考慮します。

例:


.foo {
  margin-bottom: 1px;
  margin-bottom: 1px; /* duplicates margin-bottom */
  margin: 0; /* overrides margin-bottom */
}