Code smells
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.
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.