mybuddy/.stylelintrc

13 lines
369 B
Plaintext
Raw Permalink Normal View History

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