Skip to content

Latest commit

 

History

History
60 lines (46 loc) · 1.05 KB

no-duplicate-enum-values.md

File metadata and controls

60 lines (46 loc) · 1.05 KB
description
Disallow duplicate enum member values.

🛑 This file is source code, not the primary documentation location! 🛑

See https://typescript-eslint.io/rules/no-duplicate-enum-values for documentation.

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.

Rule Details

This rule disallows defining an enum with multiple members initialized to the same value. Now it only enforces on enum members initialized with String or Number literals. Members without initializer or initialized with an expression are not checked by this rule.

❌ Incorrect

enum E {
  A = 0,
  B = 0,
}
enum E {
  A = 'A'
  B = 'A'
}

✅ Correct

enum E {
  A = 0,
  B = 1,
}
enum E {
  A = 'A'
  B = 'B'
}

Options

// .eslintrc.json
{
  "rules": {
    "@typescript-eslint/no-duplicate-enum-values": "warn"
  }
}

This rule is not configurable.