28 lines
670 B
JavaScript
28 lines
670 B
JavaScript
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
|
|
import pluginVue from 'eslint-plugin-vue'
|
|
import vueTsEslintConfig from '@vue/eslint-config-typescript'
|
|
|
|
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/recommended'],
|
|
...vueTsEslintConfig(),
|
|
eslintPluginPrettierRecommended,
|
|
|
|
{
|
|
rules: {
|
|
'sort-imports': 'error',
|
|
'vue/attributes-order': ['error', { alphabetical: true }],
|
|
'vue/multi-word-component-names': 'off',
|
|
},
|
|
},
|
|
]
|