Skip to content

Files

Latest commit

 

History

History
23 lines (14 loc) · 416 Bytes

ModifierOrder.md

File metadata and controls

23 lines (14 loc) · 416 Bytes

Pattern: Incorrect modifier order

Issue: -

Description

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

Further Reading