You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
764 B
27 lines
764 B
import pluginVue from 'eslint-plugin-vue'
|
|
import vueTsEslintConfig from '@vue/eslint-config-typescript'
|
|
import oxlint from 'eslint-plugin-oxlint'
|
|
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
|
|
|
|
export default [
|
|
{
|
|
name: 'app/files-to-lint',
|
|
files: ['**/*.{ts,mts,tsx,vue}'],
|
|
},
|
|
|
|
{
|
|
name: 'app/files-to-ignore',
|
|
ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],
|
|
},
|
|
|
|
...pluginVue.configs['flat/essential'],
|
|
...vueTsEslintConfig(),
|
|
oxlint.configs['flat/recommended'],
|
|
skipFormatting,
|
|
{
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off', //关闭any类型警告
|
|
'vue/valid-v-slot': 'off', //关闭v-slot警告
|
|
},
|
|
},
|
|
]
|
|
|