This commit is contained in:
2025-11-28 14:07:27 +08:00
commit b1a0a4c54e
121 changed files with 8593 additions and 0 deletions

27
.stylelintrc.json Normal file
View File

@@ -0,0 +1,27 @@
{
"extends": [
"stylelint-config-recommended",
"stylelint-config-recommended-scss",
"stylelint-config-recess-order",
"stylelint-prettier/recommended",
"stylelint-config-html/vue"
],
"overrides": [
{
"files": ["**/*.{css,scss}"],
"customSyntax": "postcss-scss"
},
{
"files": ["**/*.(html|vue)"],
"customSyntax": "postcss-html"
}
],
"rules": {
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global", "export", "v-deep", "deep"]
}
]
}
}