2026-01-16 19:55:10 -07:00
|
|
|
{
|
|
|
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
|
|
|
"plugins": [
|
|
|
|
|
"unicorn",
|
|
|
|
|
"typescript",
|
|
|
|
|
"oxc"
|
|
|
|
|
],
|
|
|
|
|
"categories": {
|
2026-01-31 15:58:24 +09:00
|
|
|
"correctness": "error",
|
|
|
|
|
"perf": "error"
|
|
|
|
|
},
|
|
|
|
|
"rules": {
|
|
|
|
|
"eslint-plugin-unicorn/prefer-array-find": "off",
|
|
|
|
|
"eslint/no-await-in-loop": "off",
|
|
|
|
|
"oxc/no-accumulating-spread": "off",
|
|
|
|
|
"oxc/no-map-spread": "off"
|
2026-01-16 20:04:34 -07:00
|
|
|
},
|
|
|
|
|
"ignorePatterns": ["src/canvas-host/a2ui/a2ui.bundle.js"]
|
2026-01-16 19:55:10 -07:00
|
|
|
}
|