Style terms
Consistency, readability, and the rules that make teams sane
Coding style is not about aesthetics — it is about communication. Consistent formatting, naming conventions, linting rules, and documentation standards reduce cognitive load and make code reviews faster and less painful. This category covers the conventions and tooling that help teams write code that reads as if one thoughtful person wrote it all.
Simplifying Complex Conditional Logic
Complex conditionals can be simplified with De Morgan's laws, guard clauses, decomposing into named predicates, and consolidating duplicate conditions.
2mo ago
style intermediate
Semantic Versioning
MAJOR.MINOR.PATCH — bump MAJOR for breaking changes, MINOR for new backwards-compatible features, PATCH for backwards-compatible bug fixes. Pre-release and build metadata extend this.
2mo ago
style beginner