When using switch/case, I think of "default" the same as I'd think of an "else" in an if/else statement: I only use it if it's necessary.
But while optimizing my code, I see that ES Lint throws a warning on switch/case when I don't have a default.
What do you think, should I ignore the warning? Or is there an advantage to throw in an empty default?