mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
afef596f20
* Bump stylelint-config-twbs-bootstrap from 3.0.1 to 3.1.0 Bumps [stylelint-config-twbs-bootstrap](https://github.com/twbs/stylelint-config-twbs-bootstrap) from 3.0.1 to 3.1.0. - [Release notes](https://github.com/twbs/stylelint-config-twbs-bootstrap/releases) - [Commits](https://github.com/twbs/stylelint-config-twbs-bootstrap/compare/v3.0.1...v3.1.0) --- updated-dependencies: - dependency-name: stylelint-config-twbs-bootstrap dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update .stylelintrc Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR <xhmikosr@gmail.com>
31 lines
637 B
Text
31 lines
637 B
Text
{
|
|
"extends": [
|
|
"stylelint-config-twbs-bootstrap"
|
|
],
|
|
"rules": {
|
|
"declaration-property-value-disallowed-list": {
|
|
"border": "none",
|
|
"outline": "none"
|
|
},
|
|
"function-disallowed-list": [
|
|
"calc",
|
|
"lighten",
|
|
"darken"
|
|
],
|
|
"property-disallowed-list": [
|
|
"border-radius",
|
|
"border-top-left-radius",
|
|
"border-top-right-radius",
|
|
"border-bottom-right-radius",
|
|
"border-bottom-left-radius",
|
|
"transition"
|
|
],
|
|
"scss/dollar-variable-default": [
|
|
true,
|
|
{
|
|
"ignore": "local"
|
|
}
|
|
],
|
|
"scss/selector-no-union-class-name": true
|
|
}
|
|
}
|