twbs--bootstrap/.stylelintrc

23 lines
431 B
Plaintext
Raw Normal View History

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