Arseniy Zaostrovnykh 7ca29f686f Force linebreaks
2021-02-02 15:02:10 +01:00

23 lines
484 B
Plaintext

Boolean literals should be avoided in comparison expressions ``++==++`` and ``++!=++`` to improve code readability.
This rule also reports on redundant boolean operations.
== Noncompliant Code Example
----
let someValue = "0";
// ...
if (someValue == true) { /* ... */ }
if (someBooleanValue != true) { /* ... */ }
doSomething(!false);
----
== Compliant Solution
----
if (someValue && someValue != "0") { /* ... */ }
if (!someBooleanValue) { /* ... */ }
doSomething(true);
----