Reports class names that do not follow the recommended naming conventions.

Consistent naming allows for easier code reading and understanding. According to the Kotlin official style guide, classes should be named in CamelCase.

It is possible to introduce other naming rules by changing the "Pattern" regular expression.

Example:


  class user(val name: String)

After renaming according to the Kotlin conventions:


  class User(val name: String)