RulesCommonenum-constants-orderingOn this pageenum-constants-orderingv1.8.0stylehas auto-fixpro+ Ensures consistent alphabetical order of Enum constants. Unclear why or when to use this rule? Example ❌ Bad: enum SomeEnum { second, first, // LINT: Enum constants do not match the alphabetical order. Try sorting them.} ✅ Good: enum SomeEnum { first, second,} Related Rules member-ordering map-keys-ordering avoid-duplicate-constant-values