{ "$schema": "https://raw.githubusercontent.com/oxc-project/oxc/refs/heads/main/npm/oxlint/configuration_schema.json", "plugins": [ "eslint", "import", "node", "oxc", "promise", "typescript", "unicorn" ], "categories": { "correctness": "warn", "suspicious": "error", "perf": "error" }, "rules": { "unicorn/require-module-specifiers": "off", "no-await-in-loop": "warn", "typescript/no-extraneous-class": ["warn", { "allowWithDecorator": true }], "eslint/no-restricted-imports": [ "error", { "paths": [ { "name": "zod", "message": "Use `zod/v4` (legacy `zod` import is disallowed)." } ] } ] } }