VSCodeBeautify
VSCodeBeautify copied to clipboard
Is there a configuration to align `case` with `switch`?
- beautify Version: 1.5.0
.jsbeautifyrc
// no special settings.
The formatted case statement has an indentation to switch statement. However, this conflicts with ESLint indent check.
Expected results
switch (something) {
case 'a':
break
case 'b':
break
}
Actual results
switch (something) {
case 'a':
break
case 'b':
break
}