From aafc1064d9f0e55987d6dcdd8b99c320dfb1a314 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Fri, 22 Oct 2021 13:51:45 +0800 Subject: [PATCH] Disable CSS selector naming rule --- src/webui/www/.stylelintrc.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/webui/www/.stylelintrc.json b/src/webui/www/.stylelintrc.json index a1a4aa148..76a8c17b5 100644 --- a/src/webui/www/.stylelintrc.json +++ b/src/webui/www/.stylelintrc.json @@ -12,7 +12,9 @@ "indentation": 4, "length-zero-no-unit": null, "no-descending-specificity": null, - "value-keyword-case": null, - "order/properties-alphabetical-order": true + "order/properties-alphabetical-order": true, + "selector-class-pattern": null, + "selector-id-pattern": null, + "value-keyword-case": null } }