Why is the imho missing indentation of the "case" - keywords in a switch statement considered good style?
No indentation of the "case" keyword seems to be the default formatting option in about every IDE:
switch (i){
case 0:
break;
case 1:
break;
}
while I find this format more intuitive:
switch (i){
case 0:
break;
case 1:
break;
}
Is there some logic behind this, that eludes me?