WiseTechGlobal / WTG.Analyzers

Analyzers from WiseTech Global to enforce our styles, behaviours, and prevent common mistakes.
Other
16 stars 3 forks source link

Should warn about using boolean constants in more complex boolean expressions. #147

Closed brian-reichle closed 3 years ago

brian-reichle commented 3 years ago

eg. should warn about the following:

value || true
value && false
result ||= true
result &&= false
!true
true ? value1 : value2
value1 ? true : value2
value1 ? value2 : false