regal icon indicating copy to clipboard operation
regal copied to clipboard

Rule: `unnecessary-unification`

Open anderseknert opened this issue 1 year ago • 1 comments

Avoid

input.number = 5

Prefer

input.number == 5

Motivation: while there are a few valid cases for unification, the unification operator (=) should not be used for simple comparison. TBD — more comprehensive explanation.

anderseknert avatar Jan 24 '23 15:01 anderseknert