DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
3
Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
half day
Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
blocked
ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
clear
Prerequisites
SwiftSwiftLint rule structureAbstract Syntax Tree (AST)
Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
35
Research direction
Implement a new rule in SwiftLint that detects empty extensions (extensions with no members). Look at existing rules like EmptyEnumRule for reference. The AST for an extension is represented by the `ExtensionDecl` node; check its `members` array for any declarations. Consider edge cases such as extensions with attributes or conditional compilation blocks. Since the issue has an assignee, coordinate with them before starting work.