Skip to content

Commit

Permalink
fix: only use eslint in JavaScript (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikkolast88 committed Sep 13, 2023
1 parent d581515 commit ad07d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config-vue/index.js
Expand Up @@ -11,7 +11,7 @@ module.exports = {
files: ['*.vue'],
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
parser: TS ? '@typescript-eslint/parser' : null,
},
rules: {
'no-unused-vars': 'off',
Expand Down

0 comments on commit ad07d91

Please sign in to comment.