1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-26 23:04:32 +02:00

Stylelint: disallow some property values (#32756)

* `border: none`
* `outline: none`
This commit is contained in:
XhmikosR
2021-01-13 10:52:41 +02:00
parent 17521ed43a
commit aeccf0e270

View File

@@ -3,6 +3,10 @@
"stylelint-config-twbs-bootstrap/scss" "stylelint-config-twbs-bootstrap/scss"
], ],
"rules": { "rules": {
"declaration-property-value-disallowed-list": {
"border": "none",
"outline": "none"
},
"function-disallowed-list": [ "function-disallowed-list": [
"calc" "calc"
], ],