1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| module.exports = {
| root: true,
| env: {
| browser: true,
| 'jest/globals': true,
| node: true,
| },
| parser: 'vue-eslint-parser',
| parserOptions: {
| parser: '@babel/eslint-parser',
| babelOptions: {
| parserOpts: {
| plugins: ['jsx'],
| },
| },
| requireConfigFile: false,
| },
| extends: ['@nuxtjs', 'plugin:nuxt/recommended', 'prettier'],
| plugins: ['jest'],
| // add your custom rules here
| rules: {
| 'no-console': 'off',
| 'no-unused-vars': 'warn',
| 'vue/no-v-html': 'off',
| 'vue/multi-word-component-names': 'off',
| },
| }
|
|