release: update 5.1.0

This commit is contained in:
xiaoxian521
2024-03-09 22:45:04 +08:00
parent d543b57e34
commit 70772864ac
152 changed files with 8006 additions and 8599 deletions

View File

@@ -1,11 +1,13 @@
module.exports = {
root: true,
// @ts-check
/** @type {import("stylelint").Config} */
export default {
extends: [
"stylelint-config-standard",
"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)"],
@@ -21,6 +23,7 @@ module.exports = {
}
],
rules: {
"prettier/prettier": true,
"selector-class-pattern": null,
"no-descending-specificity": null,
"scss/dollar-variable-pattern": null,
@@ -80,5 +83,5 @@ module.exports = {
{ severity: "warning" }
]
},
ignoreFiles: ["**/*.js", "**/*.ts", "**/*.jsx", "**/*.tsx"]
ignoreFiles: ["**/*.js", "**/*.ts", "**/*.jsx", "**/*.tsx", "report.html"]
};