From 503b22548bb67e0699fb2be26e66dcae550e2ba2 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. Signed-off-by: David Nind Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- .stylelintrc.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.stylelintrc.json b/.stylelintrc.json index 769ac5daa9..5bf3054b66 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,8 +19,11 @@ "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, + "scss/dollar-variable-pattern": null, + "scss/no-global-function-names": null, "selector-class-pattern": null, "selector-id-pattern": null, "selector-no-qualifying-type": null, -- 2.39.5