erg-lang / erg

A statically typed language compatible with Python
http://erg-lang.org
Apache License 2.0
2.7k stars 55 forks source link

Linter: add "bool-comparison" warning #504

Closed mtshiba closed 7 months ago

mtshiba commented 8 months ago

Tracking issue: #501

We would like to warn code like:

y = x == False
if cond == True, do:
    ...

Of course, it should be:

y = not x
if cond, do:
    ...