From 672aa2c2a40ec36db7a96a180e628ed0ace7b4d0 Mon Sep 17 00:00:00 2001 From: synicalsyntax Date: Wed, 10 Oct 2018 09:49:38 -0700 Subject: [PATCH] tools: Add stylelint rule for eliminating hex values in CSS. Fixes #9689. --- .stylelintrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.stylelintrc b/.stylelintrc index d6a0d7a77c..0e1af52989 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -59,5 +59,8 @@ "comment-whitespace-inside": "always", "indentation": 4, + + # Limit language features + "color-no-hex": true, } }