Why this matters
Declaring parameters that are never used in a function leads to confusion and unnecessary complexity. Remove unused parameters to improve code clarity and maintainability.
Identify function parameters that are declared but never used within the function body. Remove them to improve clarity and maintainability.
Declaring parameters that are never used in a function leads to confusion and unnecessary complexity. Remove unused parameters to improve code clarity and maintainability.
Side-by-side examples engineers can pattern-match during review.
// (no example provided)// (no example provided)From the same buckets as this rule.