Stylelint: disallow some property values (#32756)

* `border: none`
* `outline: none`
This commit is contained in:
XhmikosR 2021-01-13 10:52:41 +02:00 committed by GitHub
parent 69afafe811
commit ed5ddca5ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View 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",