Files
stablyai--orca/config/oxlint-react-doctor.json
2026-07-13 13:05:33 +08:00

21 lines
594 B
JSON

{
"$schema": "../node_modules/oxlint/configuration_schema.json",
"plugins": [],
"categories": {
"correctness": "off",
"suspicious": "off",
"pedantic": "off",
"perf": "off",
"style": "off",
"restriction": "off",
"nursery": "off"
},
"jsPlugins": [{ "name": "react-doctor", "specifier": "oxlint-plugin-react-doctor" }],
"rules": {
"react-doctor/no-adjust-state-on-prop-change": "warn",
"react-doctor/no-derived-state-effect": "warn",
"react-doctor/no-initialize-state": "warn"
},
"ignorePatterns": ["**/node_modules", "**/dist", "**/out"]
}