Disable React JSX scope and uses-react lint rules

This commit is contained in:
SrGooglo 2025-06-16 20:57:21 +00:00
parent 9b56c04978
commit 4bb0789385

View File

@ -14,4 +14,10 @@ export default defineConfig([
languageOptions: { globals: globals.browser }, languageOptions: { globals: globals.browser },
}, },
pluginReact.configs.flat.recommended, pluginReact.configs.flat.recommended,
{
rules: {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
},
},
]) ])