From b63b65d74321c43001c6cdb5de3ed58b8998fdf8 Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Sun, 16 Apr 2023 09:05:50 +0800 Subject: [PATCH] chore(stylelint): optimize the rule for `font-family` variables (#987) Turn off the rule `value-keyword-case` for `font-family` Resolves #987 --- .stylelintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.stylelintrc.json b/.stylelintrc.json index 09b3c87..e5cfad0 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -16,6 +16,7 @@ "rule-empty-line-before": [ "always", { "ignore": ["after-comment", "first-nested", "inside-block"] } - ] + ], + "value-keyword-case": ["lower", { "ignoreProperties": ["/^\\$/"] }] } }