Files
openclaw/.oxlintrc.json
2026-01-31 15:58:24 +09:00

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"]
}