prefer-type-fest-merge-exclusive
Require TypeFest MergeExclusive over XOR aliases.
Targeted pattern scopeโ
This rule reports XOR<...> helper aliases and prefers MergeExclusive<...> for mutually exclusive object contracts.
What this rule reportsโ
- Type references named
XOR.
Detection boundariesโ
- โ
Reports direct
XOR<...>type references. - โ Does not auto-fix when project-local
XORsemantics differ fromMergeExclusive.
Why this rule existsโ
MergeExclusive<A, B> is the canonical TypeFest utility for object-level XOR constraints.
Unifying on one name reduces contract ambiguity in auth/selectors where two modes must be mutually exclusive.
โ Incorrectโ
type Selector = XOR<{ email: string }, { id: string }>;
โ Correctโ
import type { MergeExclusive } from "type-fest";
type Selector = MergeExclusive<{ email: string }, { id: string }>;
Behavior and migration notesโ
MergeExclusiveensures overlapping key sets cannot be simultaneously satisfied.- Verify parity if your legacy
XORhelper applied custom key normalization. - Keep mutually exclusive contract types near API boundaries to improve review clarity.
ESLint flat config exampleโ
import typefest from "eslint-plugin-typefest";
export default [
{
plugins: { typefest },
rules: {
"typefest/prefer-type-fest-merge-exclusive": "error",
},
},
];
When not to use itโ
Disable this rule if your codebase intentionally standardizes XOR naming instead of TypeFest.
Package documentationโ
TypeFest package documentation:
Source file: source/merge-exclusive.d.ts
/**
Create a type that has mutually exclusive keys.
This type was inspired by [this comment](https://github.com/Microsoft/TypeScript/issues/14094#issuecomment-373782604).
This type works with a helper type, called `Without`. `Without<FirstType, SecondType>` produces a type that has only keys from `FirstType` which are not present on `SecondType` and sets the value type for these keys to `never`. This helper type is then used in `MergeExclusive` to remove keys from either `FirstType` or `SecondType`.
@example
```
import type {MergeExclusive} from 'type-fest';
type ExclusiveVariation1 = {
exclusive1: boolean;
};
type ExclusiveVariation2 = {
exclusive2: string;
};
type ExclusiveOptions = MergeExclusive<ExclusiveVariation1, ExclusiveVariation2>;
let exclusiveOptions: ExclusiveOptions;
exclusiveOptions = {exclusive1: true};
// Works
exclusiveOptions = {exclusive2: 'hi'};
// Works
// @ts-expect-error
exclusiveOptions = {exclusive1: true, exclusive2: 'hi'};
// Error
```
@category Object
*/
Rule catalog ID: R049