Closed
Description
Testing #19091
In a typescript file:
class B {
public foo() {
console.log('hello');
switch (parseInt(this.toString())) {
case 1:
break;
case 2:
break;
}
}
}
- use 'Reindent All Lines'
- Indenting of the 'break' statements is changed to align to the case statements
- Use the formatter: break statements are indented again
It would be better if formatter and the reindent command use the same indentation strategy.