2020-07-31 18:16:28 +02:00
|
|
|
{
|
|
|
|
"extends": [
|
2022-08-10 17:59:59 +02:00
|
|
|
"stylelint-config-standard",
|
|
|
|
"stylelint-config-recommended-vue"
|
2020-07-31 18:16:28 +02:00
|
|
|
],
|
|
|
|
"fix": true,
|
|
|
|
"formatter": "verbose",
|
2024-03-09 15:05:55 +01:00
|
|
|
"customSyntax": "postcss-html",
|
2020-07-31 18:16:28 +02:00
|
|
|
"plugins": [
|
|
|
|
"stylelint-scss"
|
|
|
|
],
|
|
|
|
"rules": {
|
2021-04-03 11:21:58 +02:00
|
|
|
"at-rule-no-unknown": null,
|
2021-07-08 18:41:17 +02:00
|
|
|
"no-descending-specificity": null,
|
2024-03-09 15:05:55 +01:00
|
|
|
"font-family-no-missing-generic-family-keyword": null
|
2020-07-31 18:16:28 +02:00
|
|
|
},
|
|
|
|
"syntax": "scss"
|
|
|
|
}
|