| module.exports = { | |
| root: true, | |
| env: { | |
| node: true | |
| }, | |
| extends: ['plugin:vue/essential', '@vue/prettier'], | |
| rules: { | |
| 'no-console': 'off', | |
| 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', | |
| 'prettier/prettier': [ | |
| 'error', | |
| { | |
| singleQuote: true | |
| } | |
| ] | |
| }, | |
| parserOptions: { | |
| parser: 'babel-eslint' | |
| }, | |
| overrides: [ | |
| { | |
| files: [ | |
| '**/__tests__/*.{j,t}s?(x)', | |
| '**/tests/unit/**/*.spec.{j,t}s?(x)' | |
| ], | |
| env: { | |
| jest: true | |
| } | |
| } | |
| ] | |
| }; |