My OCD makes me add \"break\" when writing case statements, even if they will not be executed. Consider the following code example:
switch(option) { cas
I don't personally put the breaks in, but it could help when someone else decides to move the return (-1) to outside of the switch and forgets to add break.