|
|
@@ -12,7 +12,6 @@ export default defineConfigWithVueTs(
|
|
|
{
|
|
|
name: 'app/files-to-lint',
|
|
|
files: ['**/*.{ts,mts,tsx,vue}'],
|
|
|
-
|
|
|
},
|
|
|
|
|
|
globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']),
|
|
|
@@ -25,6 +24,7 @@ export default defineConfigWithVueTs(
|
|
|
rules: {
|
|
|
// 禁用 vue/multi-word-component-names 规则
|
|
|
'vue/multi-word-component-names': 'off',
|
|
|
+ '@typescript-eslint/no-explicit-any': 'off',
|
|
|
},
|
|
|
- }
|
|
|
+ },
|
|
|
)
|