Pattern: Malformed boolean property name
Issue: -
Reports when a boolean property doesn’t match a pattern.
Example of incorrect code (allowedPattern
: '^(is|has|are)'
):
val progressBar: Boolean = true
Example of correct code:
val hasProgressBar: Boolean = true