Skip to content

Files

Latest commit

 

History

History
23 lines (14 loc) · 435 Bytes

NonBooleanPropertyPrefixedWithIs.md

File metadata and controls

23 lines (14 loc) · 435 Bytes

Pattern: Use of non-boolean property with is prefix

Issue: -

Description

Reports when property with is prefix doesn't have a boolean type.

Example of incorrect code:

val isEnabled: Int = 500

Example of correct code:

val isEnabled: Boolean = false

Further Reading