chore: disable react/jsx-runtime eslint rule for apps/mobile

This commit is contained in:
Abdullah Atta
2022-08-29 12:36:44 +05:00
parent 4a659ccb8c
commit 1f2410bdd2

View File

@@ -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
}
}
]