Skip to content

Files

Latest commit

 

History

History
28 lines (19 loc) · 356 Bytes

Lint-BooleanSymbol.md

File metadata and controls

28 lines (19 loc) · 356 Bytes

Pattern: Use of :true/:false

Issue: -

Description

This rule checks for :true and :false symbols. In most cases it would be a typo.

Examples

# bad
:true

# good
true
# bad
:false

# good
false

Further Reading