From 50d0c0a51ef6af9dcaa8f5ec4e60eb8d96a92007 Mon Sep 17 00:00:00 2001 From: Wonsuk Choi Date: Sun, 15 Dec 2024 23:03:47 +0900 Subject: [PATCH] chore(.eslintrc.json): remove unnecessary elements from the plugins, add react/jsx-runtime --- .eslintrc.json | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index ff0e5aceb1..766d792966 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -8,22 +8,13 @@ "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", + "plugin:react/jsx-runtime", "plugin:react-hooks/recommended", "plugin:import/errors", "plugin:import/warnings", "plugin:prettier/recommended" ], - "plugins": [ - "@typescript-eslint", - "react", - "prettier", - "react-hooks", - "import", - "@vitest", - "jest-dom", - "testing-library", - "react-compiler" - ], + "plugins": ["react-compiler"], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 2018, @@ -77,8 +68,6 @@ "pathGroupsExcludedImportTypes": ["builtin"] } ], - "react/jsx-uses-react": "off", - "react/react-in-jsx-scope": "off", "sort-imports": [ "error", {