{ "$schema": "./node_modules/oxlint/configuration_schema.json", "plugins": ["typescript", "import", "unicorn"], "categories": { "correctness": "warn", "suspicious": "warn" }, "rules": { "no-empty-pattern": "off", "radix": "off", "@typescript-eslint/no-empty-interface": "off", "@typescript-eslint/ban-types": "off", "@typescript-eslint/no-unnecessary-type-arguments": "off", "@typescript-eslint/no-floating-promises": "off", "@typescript-eslint/no-unsafe-type-assertion": "off", "@typescript-eslint/restrict-template-expressions": "off", "@typescript-eslint/no-base-to-string": "off", "@typescript-eslint/no-redundant-type-constituents": "off", "@typescript-eslint/no-misused-spread": "off", "no-unused-expressions": "off", "import/no-unassigned-import": "off", "eqeqeq": "warn", "react/react-in-jsx-scope": "off" }, "ignorePatterns": [ "dist/**", "build/**", "node_modules/**", "**/*.gen.ts", "**/*.generated.ts", "**/*.generated.tsx" ] }