Kotlin

Kotlin

Made by DeepSource

Non-compliant class/object name detected KT-C1000

Style
Major

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.

Bad Practice

class someclass {
    // ...
}

Recommended

Follow Kotlin's (or your organization's) naming conventions throughout your codebase.

class SomeClass {
    // ...
}

References