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
You don't need either break, but there's no harm in having them. In my opinion, keeping your code structured is worth having a couple of extraneous statements.