diff options
| author | XhmikosR <[email protected]> | 2021-01-13 10:52:41 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2021-01-13 11:03:32 +0200 |
| commit | aeccf0e270868d1f782839a39d728ea88428c415 (patch) | |
| tree | 67d7544e55e9e5624141ff243ea573c143a9a9aa | |
| parent | 17521ed43ad4af2166735c83b99baaeff9b86c0a (diff) | |
| download | bootstrap-aeccf0e270868d1f782839a39d728ea88428c415.tar.xz bootstrap-aeccf0e270868d1f782839a39d728ea88428c415.zip | |
Stylelint: disallow some property values (#32756)
* `border: none`
* `outline: none`
| -rw-r--r-- | .stylelintrc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.stylelintrc b/.stylelintrc index 47dd3e5d9..b9bde72db 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -3,6 +3,10 @@ "stylelint-config-twbs-bootstrap/scss" ], "rules": { + "declaration-property-value-disallowed-list": { + "border": "none", + "outline": "none" + }, "function-disallowed-list": [ "calc" ], |
