mirror of https://github.com/snachodog/mybuddy.git
19 lines
403 B
Plaintext
19 lines
403 B
Plaintext
|
{
|
||
|
"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
|
||
|
}
|
||
|
}
|