0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-06 04:08:22 +01:00
Bootstrap/.stylelintrc

19 lines
356 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": {
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
}