1
0
mirror of synced 2025-12-08 14:54:44 +08:00

修复图标显示乱码问题

This commit is contained in:
xuliangzhan
2022-11-19 23:38:55 +08:00
parent 4dff685957
commit cdbb059bb2
40 changed files with 324 additions and 189 deletions

View File

@@ -4,9 +4,9 @@ module.exports = {
node: true
},
extends: [
"plugin:vue/vue3-essential",
"@vue/standard",
"@vue/typescript/recommended"
'plugin:vue/vue3-essential',
'@vue/standard',
'@vue/typescript/recommended'
],
parserOptions: {
ecmaVersion: 2020
@@ -15,6 +15,9 @@ module.exports = {
'no-console': 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off'
'@typescript-eslint/no-explicit-any': 'off',
'vue/multi-word-component-names': 'off',
'vue/multi-word-component': 'off',
'multiline-ternary': 'off'
}
}