From d99d75fcaee9f23bddab08ee89e9ddd21cf5c998 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 13 Jan 2021 10:52:41 +0200 Subject: [PATCH] Stylelint: disallow some property values (#32756) * `border: none` * `outline: none` --- .stylelintrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.stylelintrc b/.stylelintrc index 47dd3e5d9b44..b9bde72db0de 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -3,6 +3,10 @@ "stylelint-config-twbs-bootstrap/scss" ], "rules": { + "declaration-property-value-disallowed-list": { + "border": "none", + "outline": "none" + }, "function-disallowed-list": [ "calc" ],