Pattern: Incorrect modifier order
Issue: -
Reports cases in the code where modifiers are not in the correct order.
Example of incorrect code:
lateinit internal private val str: String
Example of correct code:
private internal lateinit val str: String