8000 fix: only use eslint in JavaScript (#241) · holtwick/eslint-config@ad07d91 · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
fix: only use eslint in JavaScript (antfu#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikkolast88 authored 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
Original file line number Diff line number Diff line change
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.
0