diff options
| author | XhmikosR <[email protected]> | 2021-01-13 10:52:41 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-13 10:52:41 +0200 |
| commit | ed5ddca5ba6436a6234e1b9dfa0883382c84f0db (patch) | |
| tree | d574b624f4b25f9d996918d89a07ac0e1f5038c1 | |
| parent | 69afafe8118aa045b1371f93d5a5d5224a9d15dd (diff) | |
| download | bootstrap-ed5ddca5ba6436a6234e1b9dfa0883382c84f0db.tar.xz bootstrap-ed5ddca5ba6436a6234e1b9dfa0883382c84f0db.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 1c9ee1811..c068d30b5 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", "lighten", |
