2024-11-02 18:16:32 +00:00
|
|
|
import pluginVue from 'eslint-plugin-vue'
|
|
|
|
import vueTsEslintConfig from '@vue/eslint-config-typescript'
|
|
|
|
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/**'],
|
|
|
|
},
|
|
|
|
|
2024-11-02 18:41:13 +00:00
|
|
|
...pluginVue.configs['flat/recommended'],
|
2024-11-02 18:16:32 +00:00
|
|
|
...vueTsEslintConfig(),
|
|
|
|
skipFormatting,
|
2024-11-02 18:41:13 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
rules: {
|
|
|
|
'vue/multi-word-component-names': 'off',
|
|
|
|
}
|
|
|
|
}
|
2024-11-02 18:16:32 +00:00
|
|
|
]
|