35 lines
894 B
JavaScript
35 lines
894 B
JavaScript
import js from '@eslint/js'
|
|
import prettier from 'eslint-config-prettier'
|
|
import pluginVue from 'eslint-plugin-vue'
|
|
import globals from 'globals'
|
|
import tseslint from 'typescript-eslint'
|
|
|
|
export default tseslint.config(
|
|
{
|
|
ignores: ['dist/**', 'node_modules/**', 'src/auto-imports.d.ts', 'src/components.d.ts'],
|
|
},
|
|
js.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
...pluginVue.configs['flat/recommended'],
|
|
prettier,
|
|
{
|
|
files: ['**/*.{ts,vue}'],
|
|
languageOptions: {
|
|
ecmaVersion: 'latest',
|
|
sourceType: 'module',
|
|
globals: {
|
|
...globals.browser,
|
|
},
|
|
parserOptions: {
|
|
parser: tseslint.parser,
|
|
extraFileExtensions: ['.vue'],
|
|
},
|
|
},
|
|
rules: {
|
|
'vue/attributes-order': 'off',
|
|
'vue/multi-word-component-names': 'off',
|
|
'vue/no-mutating-props': ['error', { shallowOnly: true }],
|
|
},
|
|
},
|
|
)
|