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