### What it does
Finds structs without fields (a so-called "empty struct") that are declared with brackets.

### Why is this bad?
Empty brackets after a struct declaration can be omitted.

### Example
```
struct Cookie {}
```
Use instead:
```
struct Cookie;
```