### What it does
Checks for usage of `x >= y + 1` or `x - 1 >= y` (and `<=`) in a block

### Why is this bad?
Readability -- better to use `> y` instead of `>= y + 1`.

### Example
```
if x >= y + 1 {}
```

Use instead:
```
if x > y {}
```