Skip to content

Files

Latest commit

 

History

History
19 lines (11 loc) · 302 Bytes

Lint-UselessComparison.md

File metadata and controls

19 lines (11 loc) · 302 Bytes

Pattern: Useless comparison with itself

Issue: -

Description

This rule checks for comparison of something with itself.

Examples

# bad

x.top >= x.top

Further Reading