From 667245ce4211542dded35bd7c5f9dc71f7eb0b9f Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 8 Sep 2022 12:37:25 +0000 Subject: [PATCH] Bug 31528: (follow-up) A few additional rules Adding a few more rules which came up during the correction process in the follow-up bug. --- .stylelintrc.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.stylelintrc.json b/.stylelintrc.json index 769ac5daa9..f83e55f607 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -5,9 +5,11 @@ ], "rules": { "alpha-value-notation": null, + "color-function-notation": "legacy", "color-hex-case": "upper", "color-hex-length": null, "color-named": "never", + "declaration-colon-newline-after": null, "declaration-colon-space-after": "always", "declaration-no-important": true, "function-parentheses-space-inside": "always", @@ -17,6 +19,7 @@ "media-feature-parentheses-space-inside": "always", "no-descending-specificity": null, "no-duplicate-selectors": true, + "no-invalid-position-at-import-rule": null, "number-leading-zero": "never", "order/properties-alphabetical-order": true, "selector-class-pattern": null, -- 2.20.1