mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
f2483febb6
* Update stylelint-config-twbs-bootstrap to 0.9.0 * Add `scss/dollar-variable-default` rule This rule was removed from `stylelint-config-twbs-bootstrap` (https://github.com/twbs/stylelint-config-twbs-bootstrap/pull/27) in favour to add it here.
22 lines
431 B
Text
22 lines
431 B
Text
{
|
|
"extends": [
|
|
"stylelint-config-twbs-bootstrap/scss"
|
|
],
|
|
"rules": {
|
|
"property-blacklist": [
|
|
"border-radius",
|
|
"border-top-left-radius",
|
|
"border-top-right-radius",
|
|
"border-bottom-right-radius",
|
|
"border-bottom-left-radius",
|
|
"transition"
|
|
],
|
|
"function-blacklist": ["calc"],
|
|
'scss/dollar-variable-default': [
|
|
true,
|
|
{
|
|
'ignore': 'local'
|
|
}
|
|
]
|
|
}
|
|
}
|