From 40b6f05595fcab9fc104378ab6270d321b944840 Mon Sep 17 00:00:00 2001 From: fisker Cheung Date: Thu, 17 Feb 2022 17:12:26 +0800 Subject: [PATCH] Update `eslint-remote-tester.config.js` (#1733) --- test/smoke/eslint-remote-tester.config.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/smoke/eslint-remote-tester.config.js b/test/smoke/eslint-remote-tester.config.js index 0666d87355..93b39a0330 100644 --- a/test/smoke/eslint-remote-tester.config.js +++ b/test/smoke/eslint-remote-tester.config.js @@ -10,7 +10,7 @@ module.exports = { pathIgnorePattern: getPathIgnorePattern(), /** Extensions of files under scanning */ - extensions: ['js', 'jsx', 'ts', 'tsx'], + extensions: ['js', 'cjs', 'mjs', 'ts', 'cts', 'mts', 'jsx', 'tsx', 'vue'], /** Maximum amount of tasks ran concurrently */ concurrentTasks: 3, @@ -24,13 +24,8 @@ module.exports = { /** ESLint configuration */ eslintrc: { root: true, - env: { - es6: true, - }, parser: '@typescript-eslint/parser', parserOptions: { - ecmaVersion: 'latest', - sourceType: 'module', ecmaFeatures: { jsx: true, },