2021-08-27 10:13:36 +08:00
|
|
|
{
|
2022-09-26 00:21:50 +08:00
|
|
|
"extends": [
|
2023-04-10 02:28:19 +08:00
|
|
|
"stylelint-stylistic/config",
|
2022-10-03 22:12:09 +08:00
|
|
|
"stylelint-config-standard-scss",
|
2022-09-26 00:21:50 +08:00
|
|
|
"stylelint-config-standard-vue/scss"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"stylelint-scss"
|
|
|
|
],
|
|
|
|
"rules": {
|
2023-04-10 02:28:19 +08:00
|
|
|
"stylistic/max-line-length": null,
|
|
|
|
"stylistic/block-closing-brace-newline-after": [
|
2023-04-12 00:16:09 +08:00
|
|
|
"always",
|
|
|
|
{
|
|
|
|
"ignoreAtRules": ["if", "else"]
|
|
|
|
}
|
|
|
|
],
|
2022-09-26 00:21:50 +08:00
|
|
|
"at-rule-no-unknown": null,
|
|
|
|
"no-descending-specificity": null,
|
|
|
|
"property-no-unknown": null,
|
|
|
|
"font-family-no-missing-generic-family-keyword": null,
|
|
|
|
"selector-class-pattern": null,
|
2023-10-29 23:17:31 +08:00
|
|
|
"function-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignoreFunctions": [
|
|
|
|
"v-bind",
|
|
|
|
"map-get",
|
|
|
|
"lighten",
|
|
|
|
"darken"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"selector-pseudo-element-no-unknown": [
|
|
|
|
true,
|
|
|
|
{
|
|
|
|
"ignorePseudoElements": [
|
|
|
|
"/^view-transition/"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2022-10-03 22:12:09 +08:00
|
|
|
"scss/double-slash-comment-empty-line-before": null,
|
|
|
|
"scss/no-global-function-names": null
|
2022-09-26 00:21:50 +08:00
|
|
|
}
|
2021-08-27 10:13:36 +08:00
|
|
|
}
|