chore: replace eslint and prettier with oxlint and oxfmt

Migrate from ESLint/Prettier to oxlint/oxfmt for 50-100x faster linting and 35x faster formatting.
This commit is contained in:
plebeius
2025-12-26 16:41:03 +01:00
parent a57cc1e4e7
commit 4dd81edd3f
7 changed files with 188 additions and 1365 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"rules": {
"react/react-in-jsx-scope": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"ignore": [
"android/**",
"build/**",
"node_modules/**",
"public/**",
"electron/**"
]
}