fix(web): 修复代码格式和文件清理问题

清理无用文件和资源,调整代码格式统一双引号,修复部分组件路径引用问题

删除大量无用图片资源和组件文件,统一代码风格使用双引号,修复国际化文件路径引用,调整部分组件逻辑,优化项目结构
This commit is contained in:
zhangtao
2026-05-01 01:05:16 +08:00
parent 80263e98e1
commit b7800e2ddd
595 changed files with 24834 additions and 103011 deletions
+19 -71
View File
@@ -1,90 +1,38 @@
module.exports = {
// 继承推荐规范配置
extends: [
'stylelint-config-recommended',
'stylelint-config-recommended-scss',
'stylelint-config-recommended-vue/scss',
'stylelint-config-html/vue',
'stylelint-config-recess-order',
"stylelint-config-recommended",
"stylelint-config-recommended-scss",
"stylelint-config-recommended-vue/scss",
"stylelint-config-html/vue",
"stylelint-config-recess-order",
],
// 插件配置
plugins: [
'stylelint-prettier', // 统一代码风格,格式冲突时以 Prettier 规则为准
"stylelint-prettier", // 统一代码风格,格式冲突时以 Prettier 规则为准
],
// 指定不同文件对应的解析器
overrides: [
{
files: ['**/*.{vue,html}'],
customSyntax: 'postcss-html',
files: ["**/*.{vue,html}"],
customSyntax: "postcss-html",
},
{
files: ['**/*.{css,scss}'],
customSyntax: 'postcss-scss',
files: ["**/*.{css,scss}"],
customSyntax: "postcss-scss",
},
],
// 自定义规则
rules: {
'import-notation': 'string', // 指定导入CSS文件的方式("string"|"url")
'selector-class-pattern': null, // 选择器类名命名规则
'custom-property-pattern': null, // 自定义属性命名规则
'keyframes-name-pattern': null, // 动画帧节点样式命名规则
'no-descending-specificity': null, // 允许无降序特异性
'no-empty-source': null, // 允许空样式
'property-no-vendor-prefix': null, // 允许属性前缀
'prettier/prettier': true, // 强制执行 Prettier 格式化规则(需配合 .prettierrc 配置文件)
'declaration-property-value-no-unknown': null, // 允许非常规数值格式 ,如 height: calc(100% - 50)
// 允许 global 、export 、deep伪类
'selector-pseudo-class-no-unknown': [
"prettier/prettier": true, // 强制执行 Prettier 格式化规则(需配合 .prettierrc 配置文件)
"no-empty-source": null, // 允许空的样式文件
"declaration-property-value-no-unknown": null, // 允许非常规数值格式 ,如 height: calc(100% - 50)
// 允许使用未知伪类
"selector-pseudo-class-no-unknown": [
true,
{
ignorePseudoClasses: ['global', 'export', 'deep'],
},
],
// 允许未知属性
'property-no-unknown': [
true,
{
ignoreProperties: [],
ignorePseudoClasses: ["global", "export", "deep"],
},
],
// 允许使用未知伪元素
'at-rule-no-unknown': [
true,
{
ignoreAtRules: [
'apply',
'use',
'forward',
'mixin',
'include',
'extend',
'each',
'if',
'else',
'for',
'while',
'reference',
],
},
],
'scss/at-rule-no-unknown': [
true,
{
ignoreAtRules: [
'apply',
'use',
'forward',
'mixin',
'include',
'extend',
'each',
'if',
'else',
'for',
'while',
'reference',
],
},
],
"at-rule-no-unknown": null, // 禁用默认的未知 at-rule 检查
"scss/at-rule-no-unknown": true, // 启用 SCSS 特定的 at-rule 检查
},
};