INDENT_CASE_IN_SWITCH

Indent the case when it is true, don't if false


switch(x) {            switch(x) {
   case 1:             case 1:
       return y;           return y;
   case 2:             case 2:
       return z;           return x;
}                       }