This class/object has a name that does not match agreed-upon naming conventions.
Not following naming conventions can lead to confusion among developers and inconsistency in the codebase, which can result in bugs and maintenance issues. It is important to maintain a consistent and easily understandable codebase by following the recommended naming conventions.
class someclass {
// ...
}
Follow Kotlin's (or your organization's) naming conventions throughout your codebase.
class SomeClass {
// ...
}