mybuddy/.stylelintrc

20 lines
425 B
Plaintext

{
"extends": "stylelint-config-recommended-scss",
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"rules": {
"at-rule-no-vendor-prefix": true,
"indentation": 4,
"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
}
}