Skip to content

Commit

Permalink
Stylelint: disallow some property values (#32756)
Browse files Browse the repository at this point in the history
* `border: none`
* `outline: none`
  • Loading branch information
XhmikosR committed Jan 13, 2021
1 parent 17521ed commit aeccf0e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .stylelintrc
Expand Up @@ -3,6 +3,10 @@
"stylelint-config-twbs-bootstrap/scss"
],
"rules": {
"declaration-property-value-disallowed-list": {
"border": "none",
"outline": "none"
},
"function-disallowed-list": [
"calc"
],
Expand Down

0 comments on commit aeccf0e

Please sign in to comment.