Files
SEONexusAdmin/.stylelintrc.cjs
Your Name 845d68110b debug
2026-04-15 12:00:09 +08:00

36 lines
1.1 KiB
JavaScript

module.exports = {
root: true,
extends: [
"stylelint-config-standard",
"stylelint-config-html/vue",
"stylelint-config-standard-scss",
"stylelint-config-recommended-vue/scss",
"stylelint-config-recess-order"
],
overrides: [
{
files: ["**/*.{vue,html}"],
customSyntax: "postcss-html"
}
],
rules: {
"function-url-quotes": "always",
"color-hex-length": "long",
"rule-empty-line-before": "never",
"font-family-no-missing-generic-family-keyword": null,
"scss/at-import-partial-extension": null,
"property-no-unknown": null,
"selector-class-pattern": null,
"value-no-vendor-prefix": null,
"no-descending-specificity": null,
"value-keyword-case": null,
"selector-pseudo-class-no-unknown": [
true,
{
ignorePseudoClasses: ["global", "v-deep", "deep"]
}
]
},
ignoreFiles: ["**/*.js", "**/*.jsx", "**/*.tsx", "**/*.ts"]
};