mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-08 21:09:23 +08:00
20 lines
444 B
JSON
20 lines
444 B
JSON
{
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
"plugins": [
|
|
"unicorn",
|
|
"typescript",
|
|
"oxc"
|
|
],
|
|
"categories": {
|
|
"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"
|
|
},
|
|
"ignorePatterns": ["src/canvas-host/a2ui/a2ui.bundle.js"]
|
|
}
|