From 24a844011164aca048228bda9c21f2c740f41ea6 Mon Sep 17 00:00:00 2001 From: Bailey Pumfleet Date: Tue, 22 Jun 2021 15:08:48 +0100 Subject: [PATCH] Disable React in JSX ESLint rule --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 1d17720367..0ea5d0ab21 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -17,7 +17,8 @@ "plugins": ["@typescript-eslint", "prettier", "react", "react-hooks"], "rules": { "prettier/prettier": ["error"], - "@typescript-eslint/no-unused-vars": "error" + "@typescript-eslint/no-unused-vars": "error", + "react/react-in-jsx-scope": "off" }, "env": { "browser": true,