fix(lint): use correct oxlint rule names and enable react plugin in config

This commit is contained in:
plebeius
2025-12-26 17:03:26 +01:00
parent 10a266ceab
commit 9fd41f2f9f
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -1,8 +1,9 @@
{
"plugins": ["react"],
"rules": {
"react/react-in-jsx-scope": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
"react/rules-of-hooks": "error",
"react/exhaustive-deps": "warn"
},
"ignore": [
"android/**",
@@ -12,4 +13,3 @@
"electron/**"
]
}