antares/.stylelintrc

18 lines
377 B
Plaintext
Raw Normal View History

2020-07-31 18:16:28 +02:00
{
"extends": [
"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"
}