Files
5chan/oxlintrc.json
T
plebeius 4dd81edd3f 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.
2025-12-26 16:41:03 +01:00

16 lines
257 B
JSON

{
"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/**"
]
}