24 lines
441 B
JavaScript
24 lines
441 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true
|
|
},
|
|
parser: 'vue-eslint-parser',
|
|
plugins: [
|
|
'@typescript-eslint'
|
|
],
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
requireConfigFile: false
|
|
},
|
|
extends: [
|
|
'@nuxtjs',
|
|
'@nuxtjs/eslint-config-typescript',
|
|
'plugin:nuxt/recommended'
|
|
],
|
|
ignorePatterns: ['graphql/generated/*'],
|
|
// add your custom rules here
|
|
rules: {}
|
|
}
|