Design should be as simple as possible. Only implement what's necessary for the current requirements. Simple code is faster to understand and easier to maintain.
Kent Beck's Rules
... for simple designed code:
- Tests Pass
- Reveals Intent
- = Easy to read, self explanatory code
- No Duplications
- Sometimes simple abstractions are required, sometimes more complex refactorings or the introduction of design patterns.
- Fewest elements
- Extra Code Means Extra Effort: It increases potential bugs, maintenance, and developer cognitive load.
- Lean Codebase: Aim for a minimal set of elements. This is mainly about reducing unnecessary complexity, not just minimizing code. Minimal code is not always the easiest to understand.