mirror of
https://github.com/anomalyco/opentui.git
synced 2026-09-19 01:26:03 +08:00
d7ce851cbf
swap prettier with oxfmt/oxlint, update CI, and fix the formatting/lint issues needed for the new checks to pass.
19 lines
436 B
JSON
19 lines
436 B
JSON
{
|
|
"$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"
|
|
}
|
|
}
|