Skip to content

no-gratuitous-expressions ​

If a boolean expression doesn’t change the evaluation of the condition, then it is entirely unnecessary, and can be removed. If it is gratuitous because it does not match the programmer’s intent, then it’s a bug and the expression should be fixed.

Noncompliant Code Example ​

javascript
if (a) {
  if (a) { // Noncompliant
    doSomething();
  }
}

Compliant Solution ​

javascript
if (a) {
  if (b) {
    doSomething();
  }
}

// or
if (a) {
  doSomething();
}

See ​

Released under the Apache License 2.0.