module.exports = { root: true, env: { node: true, }, extends: ['plugin:vue/recommended', '@vue/prettier'], parser: 'vue-eslint-parser', parserOptions: { ecmaVersion: 2020, sourceType: 'module', ecmaFeatures: { jsx: true, }, }, rules: { 'vue/no-template-shadow': 'off', 'no-console': 'off', 'no-debugger': 'off', 'vue/no-v-html': 'off', 'vue/html-self-closing': [ 'error', { html: { void: 'any', normal: 'any', component: 'always', }, svg: 'always', math: 'always', }, ], }, overrides: [ { files: [ '**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)', ], env: { jest: true, }, }, ], }