Skip to content

Files

Latest commit

 

History

History
12 lines (7 loc) · 306 Bytes

prefer_logical_operator.md

File metadata and controls

12 lines (7 loc) · 306 Bytes

Pattern: Missing use of logical operator

Issue: -

Description

This rule prohibits is, isnt, not, and, or, yes, on, no, off. Use ==, !=, !, &&, ||, true, false instead.

Further Reading