From 1f2410bdd2d348ccac8ee344174d72a1cffd863b Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Mon, 29 Aug 2022 12:36:44 +0500 Subject: [PATCH] chore: disable react/jsx-runtime eslint rule for apps/mobile --- .eslintrc.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index e52672e13..31114c11f 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -67,7 +67,9 @@ module.exports = { }, rules: { // TODO: remove this gradually - "@typescript-eslint/ban-ts-comment": "off" + "@typescript-eslint/ban-ts-comment": "off", + "react/react-in-jsx-scope": 2, + "react/jsx-uses-react": 2 } } ]