module.exports = { root: true, env: { browser: true, node: true, es6: true }, parser: 'vue-eslint-parser', parserOptions: { parser: '@typescript-eslint/parser', ecmaVersion: 2020, sourceType: 'module', jsxPragma: 'React', ecmaFeatures: { jsx: true } }, extends: [ 'plugin:vue/vue3-recommended', 'plugin:@typescript-eslint/recommended', 'prettier', 'plugin:prettier/recommended' ], rules: { 'vue/require-default-prop': 'off', 'no-unused-vars': 'off', '@typescript-eslint/no-unused-vars': 'off', '@typescript-eslint/ban-ts-comment': 'off', '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/ban-types': 'off', '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off' // '@typescript-eslint/no-unused-vars': [ // 'error', // { // argsIgnorePattern: '^_', // varsIgnorePattern: '^_' // } // ], // 'no-unused-vars': [ // 'error', // { // argsIgnorePattern: '^_', // varsIgnorePattern: '^_' // } // ], // 'vue/html-self-closing': [ // 'error', // { // html: { // void: 'always', // normal: 'never', // component: 'always' // }, // svg: 'always', // math: 'always' // } // ] }, settings: {} }