chore(stylelint): optimize the rule for `font-family` variables (#987)

Turn off the rule `value-keyword-case` for `font-family`

Resolves #987
This commit is contained in:
Cotes Chung 2023-04-16 09:05:50 +08:00
parent 1719d81d00
commit b63b65d743
No known key found for this signature in database
GPG Key ID: 0D9E54843167A808
1 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
"rule-empty-line-before": [
"always",
{ "ignore": ["after-comment", "first-nested", "inside-block"] }
]
],
"value-keyword-case": ["lower", { "ignoreProperties": ["/^\\$/"] }]
}
}