From a2664a4666ef2c4a91a13437093da1469b150cc9 Mon Sep 17 00:00:00 2001 From: Scott O'Brien Date: Mon, 13 Nov 2023 14:38:22 -0500 Subject: [PATCH] Update property disallowed list. --- .stylelintrc | 46 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/.stylelintrc b/.stylelintrc index 14d981086f..d5b0618073 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -53,7 +53,51 @@ { "files": ["./src/button/*.scss"], "rules": { - "property-disallowed-list": ["border", "border-radius", "border-style", "margin", "padding"], + "property-disallowed-list": [ + "border", + "border-bottom", + "border-bottom-color", + "border-bottom-left-radius", + "border-bottom-right-radius", + "border-bottom-width", + "border-bottom-style", + "border-left", + "border-left-color", + "border-left-width", + "border-left-style", + "border-radius", + "border-right", + "border-right-color", + "border-right-width", + "border-right-style", + "border-top", + "border-top-color", + "border-top-left-radius", + "border-top-right-radius", + "border-top-width", + "border-top-style", + "border-style", + "bottom", + "height", + "left", + "margin", + "margin-bottom", + "margin-left", + "margin-right", + "margin-top", + "max-height", + "max-width", + "min-height", + "min-width", + "padding", + "padding-bottom", + "padding-left", + "padding-right", + "padding-top", + "right", + "top", + "width" + ], "csstools/use-logical": "always" } }