0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/.stylelintrc

23 lines
463 B
Plaintext
Raw Normal View History

2017-10-03 06:34:56 +03:00
{
"extends": [
2019-01-10 15:56:54 +02:00
"stylelint-config-twbs-bootstrap/scss"
],
"rules": {
"declaration-property-value-disallowed-list": {
"border": "none",
"outline": "none"
},
2020-09-27 16:30:48 +03:00
"function-disallowed-list": [
"calc"
],
"property-disallowed-list": [
"border-radius",
"border-top-left-radius",
"border-top-right-radius",
"border-bottom-right-radius",
"border-bottom-left-radius",
"transition"
2020-09-27 16:30:48 +03:00
]
}
2017-10-03 06:34:56 +03:00
}