]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Stylelint: disallow some property values (#32756)
authorXhmikosR <xhmikosr@gmail.com>
Wed, 13 Jan 2021 08:52:41 +0000 (10:52 +0200)
committerGitHub <noreply@github.com>
Wed, 13 Jan 2021 08:52:41 +0000 (10:52 +0200)
* `border: none`
* `outline: none`

.stylelintrc

index 1c9ee181161caf74d60017b8c7960845fe217fb0..c068d30b572a9790c5a77727a22a0a6fed732409 100644 (file)
@@ -3,6 +3,10 @@
     "stylelint-config-twbs-bootstrap/scss"
   ],
   "rules": {
+    "declaration-property-value-disallowed-list": {
+      "border": "none",
+      "outline": "none"
+    },
     "function-disallowed-list": [
       "calc",
       "lighten",