Skip to content

Commit

Permalink
[Tests] smoke: only use the TS parser on TS files
Browse files Browse the repository at this point in the history
Closes #3178
  • Loading branch information
ljharb committed Jan 17, 2022
1 parent 151bb2b commit 08fbc6a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/eslint-remote-tester.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ module.exports = {
env: {
es6: true,
},
parser: '@typescript-eslint/parser',
overrides: [
{
files: ['*.ts', '*.tsx', '*.mts', '*.cts'],
parser: '@typescript-eslint/parser',
},
],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
Expand Down

0 comments on commit 08fbc6a

Please sign in to comment.