chore: 删除会自动安装的stylelint插件依赖

This commit is contained in:
xiaoxian521
2023-11-16 22:18:22 +08:00
parent 86f4775459
commit 1e1af33237
3 changed files with 5 additions and 27 deletions

View File

@@ -8,7 +8,7 @@ module.exports = {
"stylelint-config-html/vue",
"stylelint-config-recess-order"
],
plugins: ["stylelint-order", "stylelint-prettier", "stylelint-scss"],
plugins: ["stylelint-scss", "stylelint-order", "stylelint-prettier"],
overrides: [
{
files: ["**/*.(css|html|vue)"],
@@ -24,6 +24,7 @@ module.exports = {
}
],
rules: {
"prettier/prettier": true,
"selector-class-pattern": null,
"no-descending-specificity": null,
"scss/dollar-variable-pattern": null,
@@ -83,5 +84,5 @@ module.exports = {
{ severity: "warning" }
]
},
ignoreFiles: ["**/*.js", "**/*.ts", "**/*.jsx", "**/*.tsx"]
ignoreFiles: ["**/*.js", "**/*.ts", "**/*.jsx", "**/*.tsx", "report.html"]
};