Reports const property 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, const properties should be named in a CAPITAL_CASE.

Example:


  const val Planck: Double = 6.62607015E-34

A quick-fix is suggested to rename the property:


  const val PLANCK: Double = 6.62607015E-34