{ "$schema": "../../node_modules/oxlint/configuration_schema.json", "extends": ["../../.oxlintrc.json"], "rules": { "typescript/no-explicit-any": "error", "typescript/consistent-type-assertions": ["error", { "assertionStyle": "never" }] }, "overrides": [ { "files": ["**/*.test.ts"], "rules": { "typescript/no-explicit-any": "error", "typescript/consistent-type-assertions": ["error", { "assertionStyle": "never" }] } } ] }