Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 311 Bytes

prefer_english_operator.md

File metadata and controls

11 lines (6 loc) · 311 Bytes

Pattern: Use of non-English operator

Issue: -

Description

This rule prohibits &&, ||, ==, != and !. Use and, or, is, isnt, and not instead. !! for converting to a boolean is ignored.

Further Reading