diff options
author | Vitaly Takmazov | 2022-11-06 14:36:12 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:58 +0300 |
commit | be78341420d0e08b50366803a98acde8a62596de (patch) | |
tree | abf674def913b28587467029ce8c50c39e912dc3 /vnext/.eslintrc | |
parent | e2735d40f83772835edc9accbc25f26dcd5a86b0 (diff) |
Remove Babel fully
Diffstat (limited to 'vnext/.eslintrc')
-rw-r--r-- | vnext/.eslintrc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/vnext/.eslintrc b/vnext/.eslintrc index 854daf67..110060b5 100644 --- a/vnext/.eslintrc +++ b/vnext/.eslintrc @@ -6,7 +6,6 @@ "plugin:react/jsx-runtime", "plugin:jest/recommended" ], - "parser": "@babel/eslint-parser", "env": { "browser": true, "node": true, @@ -14,7 +13,6 @@ "jest/globals": true }, "plugins": [ - "@babel", "react", "react-hooks", "only-ascii", @@ -39,6 +37,13 @@ "extends": ["plugin:testing-library/react"] } ], + "parserOptions": { + "sourceType": "module", + "ecmaFeatures": { + "jsx": true + }, + "ecmaVersion": 12 + }, "rules": { "quotes": ["error", "single"], "no-cond-assign": "warn", |