Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 150 Bytes

MA0141.md

File metadata and controls

7 lines (5 loc) · 150 Bytes

MA0141 - Use pattern matching instead of inequality operators for null check

value != null; // not compliant

value is not null; // ok