Files
openclaw/.oxlintrc.json

29 lines
851 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": [
"unicorn",
"typescript",
"oxc"
],
"categories": {
"correctness": "error",
"perf": "error",
"suspicious": "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",
"typescript/no-unsafe-type-assertion": "off",
"typescript/no-unnecessary-template-expression": "off",
"unicorn/consistent-function-scoping": "off",
"unicorn/require-post-message-target-origin": "off",
"typescript/no-extraneous-class": "off",
"oxc/no-async-endpoint-handlers": "off",
"eslint/no-new": "off",
"eslint/preserve-caught-error": "off",
},
"ignorePatterns": ["src/canvas-host/a2ui/a2ui.bundle.js"]
}