Redundant Boolean literals should be removed from expressions to improve readability.
if boolFunc() || false { // ... } flag := x && true
if boolFunc() { // ... } flag := x