mybuddy/.stylelintrc

19 lines
403 B
Plaintext
Raw Normal View History

2021-12-18 18:04:14 +00:00
{
"extends": "stylelint-config-recommended-scss",
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"rules": {
"at-rule-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"order/order": [
"declarations",
"rules"
],
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"value-no-vendor-prefix": true
}
}