### What it does
Warns if an integral or floating-point constant is
grouped inconsistently with underscores.

### Why is this bad?
Readers may incorrectly interpret inconsistently
grouped digits.

### Example
```
618_64_9189_73_511
```

Use instead:
```
61_864_918_973_511
```