| 12345678910111213141516171819 |
- // import pluginVue from 'eslint-plugin-vue'
- // import vueTsEslintConfig from '@vue/eslint-config-typescript'
- // import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
- // export default [
- // ...pluginVue.configs['flat/essential', 'plugin:vue/vue3-recommended', 'eslint:recommended'],
- // ...vueTsEslintConfig(),
- // {
- // name: 'app/files-to-lint',
- // files: ['**/*.{ts,mts,tsx,vue}'],
- // rules: { '@typescript-eslint/no-explicit-any': 0 } // todo: 孙老,此处可以不加,程序中不建议用any,如果确实无法判断建议采用unknown
- // },
- // {
- // name: 'app/files-to-ignore',
- // ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**']
- // },
-
- // skipFormatting
- // ]
|