twbs--bootstrap/.stylelintrc

23 lines
431 B
Plaintext
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": {
"property-blacklist": [
"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
],
"function-blacklist": ["calc"],
"scss/dollar-variable-default": [
true,
{
"ignore": "local"
}
]
}
2017-10-02 23:34:56 -04:00
}