Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 144 Bytes

MA0142.md

File metadata and controls

7 lines (5 loc) · 144 Bytes

MA0142 - Use pattern matching instead of equality operators for null check

value == null; // not compliant

value is null; // ok