Skip to main content

enum-constants-ordering

has auto-fix
pro+

Ensures consistent alphabetical order of Enum constants.

Example

❌ Bad:

enum SomeEnum {
second,
first, // LINT: Enum constants do not match the alphabetical order. Try sorting them.
}

✅ Good:

enum SomeEnum {
first,
second,
}