Files
anomalyco__opentui/.oxlintrc.json
T

19 lines
436 B
JSON
Raw Normal View History

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "import"],
"categories": {
"correctness": "off",
"suspicious": "off",
"pedantic": "off",
"perf": "off",
"style": "off",
"restriction": "off",
"nursery": "off"
},
"rules": {
"no-async-promise-executor": "error",
"react/react-in-jsx-scope": "off",
"react/no-unknown-property": "off"
}
}