mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Stylelint: disallow some property values (#32756)
* `border: none` * `outline: none`
This commit is contained in:
parent
69afafe811
commit
ed5ddca5ba
1 changed files with 4 additions and 0 deletions
|
@ -3,6 +3,10 @@
|
|||
"stylelint-config-twbs-bootstrap/scss"
|
||||
],
|
||||
"rules": {
|
||||
"declaration-property-value-disallowed-list": {
|
||||
"border": "none",
|
||||
"outline": "none"
|
||||
},
|
||||
"function-disallowed-list": [
|
||||
"calc",
|
||||
"lighten",
|
||||
|
|
Loading…
Reference in a new issue