Skip to content

Commit

Permalink
fix: use @typescript-eslint/parser under vue-eslint-parser
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkdo committed Oct 24, 2021
1 parent 1f28da4 commit bea5b05
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/eslint-config-typescript/index.js
Expand Up @@ -3,7 +3,10 @@ module.exports = {
'@nuxtjs'
],
plugins: ['@typescript-eslint'],
parser: '@typescript-eslint/parser',
parser: "vue-eslint-parser",
parserOptions: {
"parser": "@typescript-eslint/parser",
},
rules: {
'@typescript-eslint/no-unused-vars': ['error', { args: 'all', argsIgnorePattern: '^_' }],
// Per the docs, the root no-unused-vars should be disabled:
Expand Down

0 comments on commit bea5b05

Please sign in to comment.