From 12b3661dd615ae8853ef415eb293b5b3bc5b1e34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Fri, 2 Apr 2021 09:03:28 +0200 Subject: [PATCH] Set color-hex-case to null MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is both lowercase and uppercase in some files so this should just make life easier if someone is using a stylelinter Signed-off-by: Šimon Brandner --- .stylelintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.stylelintrc.js b/.stylelintrc.js index 313102ea83..0e6de7000f 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -4,6 +4,7 @@ module.exports = { "stylelint-scss", ], "rules": { + "color-hex-case": null, "indentation": 4, "comment-empty-line-before": null, "declaration-empty-line-before": null,