### What it does
Checks for feature names with prefix `use-`, `with-` or suffix `-support`

### Why is this bad?
These prefixes and suffixes have no significant meaning.

### Example
```
[features]
default = ["use-abc", "with-def", "ghi-support"]
use-abc = []  // redundant
with-def = []   // redundant
ghi-support = []   // redundant
```

Use instead:
```
[features]
default = ["abc", "def", "ghi"]
abc = []
def = []
ghi = []
```
