Code smells

refactoring
Last reviewed

January 31, 2025

Last modified

March 25, 2025

Drawing of a pyramid with various traps resembling code smells.

CC-BY-4.0 © 2021 Balaban et al.

Code smells are software characteristics that suggest there might be an issue with the code’s design or implementation. While code smells themselves might not always indicate a bug or malfunction, they can make the code harder to understand and extend, which can lead to bugs and other issues down the line. Code smells are usually noticed and addressed during code reviews, when writing tests, adding new features, fixing bugs, and during automated code analysis.

How to use these cards?

Each guide provides an overview of a code smell, its symptoms and an example on how to refactor it. We don’t intend to cover all refactoring techniques, but we aim to provide a starting point for identifying and addressing common code smells.

Long Method

Problem: A function is very long and hard to understand.

Large Classes

Problem: A class contains too many responsibilities or functionalities.

Code Duplication

Problem: The same or very similar code appears in multiple places.

Hard-Coded Values

Problem: Literal values (e.g., numeric values or strings) are directly embedded in the code.

Deep Nesting

Problem: There are excessive levels of nested for-loops or if-statements.

Many Inputs

Problem: Functions require a long list of parameters.

Inappropriate Intimacy

Problem: Two classes or methods depend too much on each other’s internals.

Side Effects

Problem: Changes in one part of the code cause unexpected behavior in another.

Commented out Code

Problem: There is a significant amount of outdated or commented-out code.