bootstrap/.stylelintrc

23 lines
431 B
Plaintext
Raw Normal View History

2017-10-03 11:34:56 +08:00
{
"extends": [
2019-01-10 21:56:54 +08:00
"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"
2019-10-30 15:57:09 +08:00
],
"function-blacklist": ["calc"],
"scss/dollar-variable-default": [
true,
{
"ignore": "local"
}
]
}
2017-10-03 11:34:56 +08:00
}