{ "$schema": "./node_modules/oxlint/configuration_schema.json", "ignorePatterns": [ ".next/**", ".source/**", "out/**", "node_modules/**", "next-env.d.ts", "content/docs/**/reference/api/**" ], "plugins": ["typescript", "react", "nextjs", "jsx-a11y", "import"], "categories": { "correctness": "error" }, "env": { "browser": true, "node": true, "es2022": true }, "rules": { "no-var": "error", "prefer-const": "error", "prefer-rest-params": "error", "prefer-spread": "error", "typescript/no-explicit-any": "error", "typescript/no-unused-vars": "warn", "typescript/ban-ts-comment": "error", "typescript/no-empty-object-type": "error", "typescript/no-namespace": "error", "typescript/no-require-imports": "error", "typescript/no-this-alias": "error", "typescript/no-unsafe-function-type": "error", "typescript/no-unused-expressions": "warn", "typescript/no-wrapper-object-types": "error", "typescript/prefer-as-const": "error", "typescript/triple-slash-reference": "error", "react-hooks/rules-of-hooks": "error", "react-hooks/exhaustive-deps": "warn", "import/no-anonymous-default-export": "warn", "jsx-a11y/prefer-tag-over-role": "off" } }