From 83284b6d2cdb68f442dc59d2e85bd056174d81ed Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Tue, 28 Jun 2022 22:26:27 +0800 Subject: [PATCH] [stylelint] Turn off color-hex-length --- .stylelintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.stylelintrc b/.stylelintrc index 52301b54..e590c98c 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -8,6 +8,7 @@ "declaration-empty-line-before": null, "alpha-value-notation": "number", "color-function-notation": "legacy", - "shorthand-property-no-redundant-values": null + "shorthand-property-no-redundant-values": null, + "color-hex-length": null, } }