1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-19 15:34:16 +00:00

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

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