feat: 🚀 表单设计器和审批流本地化

This commit is contained in:
2025-09-09 18:03:00 +08:00
parent 45ec52eb77
commit cd268db2a5
212 changed files with 18082 additions and 22183 deletions

View File

@@ -16,6 +16,11 @@ module.exports = {
files: ["**/*.{vue,html}"],
customSyntax: "postcss-html"
}
// 新增:对 Less 文件单独配置解析器
// {
// files: ["**/*.less"],
// customSyntax: "postcss-less" // 用 postcss-less 解析 Less 语法
// }
],
rules: {
"function-url-quotes": "always", // URL 的引号 "always(必须加上引号)"|"never(没有引号)"
@@ -29,6 +34,7 @@ module.exports = {
"value-no-vendor-prefix": null, // 关闭 vendor-prefix (为了解决多行省略 -webkit-box)
"no-descending-specificity": null, // 不允许较低特异性的选择器出现在覆盖较高特异性的选择器
"value-keyword-case": null, // 解决在 scss 中使用 v-bind 大写单词报错
"selector-pseudo-class-no-unknown": [
true,
{
@@ -36,5 +42,5 @@ module.exports = {
}
]
},
ignoreFiles: ["**/*.js", "**/*.jsx", "**/*.tsx", "**/*.ts"]
ignoreFiles: ["**/*.js", "**/*.jsx", "**/*.tsx", "**/*.ts", "**/*.less"]
};