// Flat config (ESLint 9.x) import js from '@eslint/js'; import tseslint from 'typescript-eslint'; import pluginVue from 'eslint-plugin-vue'; import eslintConfigPrettier from 'eslint-config-prettier'; export default tseslint.config( { ignores: ['dist/', 'node_modules/'] }, js.configs.recommended, ...tseslint.configs.recommended, ...pluginVue.configs['flat/recommended'], { files: ['**/*.vue'], languageOptions: { parserOptions: { parser: tseslint.parser } }, }, { rules: { 'vue/multi-word-component-names': 'off', '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], '@typescript-eslint/consistent-type-imports': 'error', 'no-console': ['warn', { allow: ['warn', 'error'] }], }, }, eslintConfigPrettier, );