Omit comparison with boolean constant

**Before:**

```
if x == true {}
```

**After:**

```
if x {}
```
