0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-29 21:52:22 +01:00
Bootstrap/.stylelintrc

23 lines
458 B
Plaintext
Raw Permalink Normal View History

2017-10-03 06:34:56 +03:00
{
"extends": [
2021-12-14 09:40:42 +02:00
"stylelint-config-twbs-bootstrap"
],
"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
}