Duplicated font family names in a font-family property value are either:

Noncompliant Code Example

.mybox {
  font-family: 'Arial', 'MS Trebuchet', 'Arial', sans-serif;
}

Compliant Solution

.mybox {
  font-family: 'Arial', 'MS Trebuchet', sans-serif;
}

stylelint Related Rules