no-duplicate-enum-values
Disallow duplicate enum member values.
✅
Extending "plugin:@typescript-eslint/recommended"
in an ESLint configuration enables this rule.
Although TypeScript supports duplicate enum member values, people usually expect members to have unique values within the same enum. Duplicate values can lead to bugs that are hard to track down.
- Flat Config
- Legacy Config
eslint.config.mjs
export default tseslint.config({
rules: {
"@typescript-eslint/no-duplicate-enum-values": "error"
}
});
.eslintrc.cjs
module.exports = {
"rules": {
"@typescript-eslint/no-duplicate-enum-values": "error"
}
};
Try this rule in the playground ↗
Examples
This rule disallows defining an enum with multiple members initialized to the same value.
This rule only enforces on enum members initialized with string or number literals. Members without an initializer or initialized with an expression are not checked by this rule.