mirror of
https://github.com/airbnb/javascript.git
synced 2026-01-14 12:18:00 -05:00
```js
switch (foo) {
case 'bar':
break;
}
```
not what the plugin currently requires:
```js
switch (foo) {
case: 'bar':
break;
}
```