Ensure that enum variants are consistently named.
Kotlin's naming conventions suggest using PascalCase for enum names, where the first letter of each word is capitalized.
If enum names do not follow this convention, it can lead to confusion and inconsistency in the codebase.
enum class SomeEnum {
variant1,
variant_two,
// ...
}
Follow Kotlin's naming conventions throughout your codebase.
enum class SomeEnum {
Variant1,
VariantTwo,
}