noDuplicateFontNames
Esta página aún no está disponible en tu idioma.
Summary
Section titled “Summary”- Rule available since: 
v1.8.0 - Diagnostic Category: 
lint/suspicious/noDuplicateFontNames - This rule is recommended, which means is enabled by default.
 - This rule doesn’t have a fix.
 - The default severity of this rule is error.
 - Sources:
 
How to configure
Section titled “How to configure”{  "linter": {    "rules": {      "suspicious": {        "noDuplicateFontNames": "error"      }    }  }}Description
Section titled “Description”Disallow duplicate names within font families.
This rule checks the font and font-family properties for duplicate font names.
This rule ignores var(—custom-property) variable syntaxes now.
Examples
Section titled “Examples”Invalid
Section titled “Invalid”a { font-family: "Lucida Grande", 'Arial', sans-serif, sans-serif; }code-block.css:1:56 lint/suspicious/noDuplicateFontNames ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  ✖ Duplicate font names are redundant and unnecessary: sans-serif
  
  > 1 │ a { font-family: “Lucida Grande”, ‘Arial’, sans-serif, sans-serif; }
      │                                                        ^^^^^^^^^^
    2 │ 
  
  ℹ This is where the duplicate font name is found:
  
  > 1 │ a { font-family: “Lucida Grande”, ‘Arial’, sans-serif, sans-serif; }
      │                                            ^^^^^^^^^^
    2 │ 
  
  ℹ Remove duplicate font names within the property.
  
a { font-family: 'Arial', "Lucida Grande", Arial, sans-serif; }code-block.css:1:44 lint/suspicious/noDuplicateFontNames ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  ✖ Duplicate font names are redundant and unnecessary: Arial
  
  > 1 │ a { font-family: ‘Arial’, “Lucida Grande”, Arial, sans-serif; }
      │                                            ^^^^^
    2 │ 
  
  ℹ This is where the duplicate font name is found:
  
  > 1 │ a { font-family: ‘Arial’, “Lucida Grande”, Arial, sans-serif; }
      │                  ^^^^^^^
    2 │ 
  
  ℹ Remove duplicate font names within the property.
  
a { FONT: italic 300 16px/30px Arial, " Arial", serif; }code-block.css:1:39 lint/suspicious/noDuplicateFontNames ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  ✖ Duplicate font names are redundant and unnecessary: ” Arial”
  
  > 1 │ a { FONT: italic 300 16px/30px Arial, ” Arial”, serif; }
      │                                       ^^^^^^^^
    2 │ 
  
  ℹ This is where the duplicate font name is found:
  
  > 1 │ a { FONT: italic 300 16px/30px Arial, ” Arial”, serif; }
      │                                ^^^^^
    2 │ 
  
  ℹ Remove duplicate font names within the property.
  
a { font-family: "Lucida Grande", "Arial", sans-serif; }b { font: normal 14px/32px -apple-system, BlinkMacSystemFont, sans-serif; }c { font-family: SF Mono, Liberation Mono, sans-serif; }d { font: 1em SF Mono, Liberation Mono, sans-serif; }Related links
Section titled “Related links”Copyright (c) 2023-present Biome Developers and Contributors.