2020-01-25 14:59:14 +01:00
|
|
|
module.exports = {
|
2022-08-03 18:40:05 +02:00
|
|
|
root: true,
|
2020-01-25 14:59:14 +01:00
|
|
|
env: {
|
|
|
|
|
browser: true,
|
2022-08-03 18:40:05 +02:00
|
|
|
node: true
|
2020-01-25 14:59:14 +01:00
|
|
|
},
|
2022-08-03 18:40:05 +02:00
|
|
|
parser: 'vue-eslint-parser',
|
|
|
|
|
plugins: [
|
|
|
|
|
'@typescript-eslint'
|
2020-01-25 14:59:14 +01:00
|
|
|
],
|
|
|
|
|
parserOptions: {
|
2022-08-03 18:40:05 +02:00
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
|
requireConfigFile: false
|
2020-01-25 14:59:14 +01:00
|
|
|
},
|
2022-08-03 18:40:05 +02:00
|
|
|
extends: [
|
|
|
|
|
'@nuxtjs',
|
|
|
|
|
'@nuxtjs/eslint-config-typescript',
|
|
|
|
|
'plugin:nuxt/recommended',
|
|
|
|
|
'prettier'
|
|
|
|
|
],
|
|
|
|
|
ignorePatterns: ["graphql/generated/*"],
|
|
|
|
|
// add your custom rules here
|
|
|
|
|
rules: {}
|
2021-12-13 20:51:48 +01:00
|
|
|
}
|