1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/.stylelintrc

28 lines
535 B
Text
Raw Normal View History

2017-10-02 23:34:56 -04:00
{
"extends": [
2019-01-10 08:56:54 -05:00
"stylelint-config-twbs-bootstrap/scss"
],
"rules": {
2020-09-28 07:57:48 -04:00
"function-disallowed-list": [
2020-10-13 03:58:06 -04:00
"calc",
"lighten",
"darken"
],
2020-09-28 07:57:48 -04:00
"property-disallowed-list": [
"border-radius",
"border-top-left-radius",
"border-top-right-radius",
"border-bottom-right-radius",
"border-bottom-left-radius",
"transition"
2019-10-30 03:57:09 -04:00
],
"scss/dollar-variable-default": [
true,
{
"ignore": "local"
}
],
"scss/selector-no-union-class-name": true
}
2017-10-02 23:34:56 -04:00
}