Rule request: Enforce whether or not parentheses should be wrapped around closures
Nobody has claimed this yet.
- Dominant language
- Swift
- Stars
- 19.7k
- Forks
- 2.3k
- Avg merge
- 1d 1h
- Merged PRs (30d)
- 11
Description
Currently closures can be written one of two ways:
myCollection.filter{ $0 == 1 }
or
myCollection.filter({ $0 == 1 })
These two different ways are identical and will run exactly the same way. Further more, this also extends to closures with multiple lines:
let newCollection = myCollection.map{
2*$0 + 5
}
or
let newCollection = myCollection.map({
2*$0 + 5
})
For this, I propose a new rule which allows the presence of parentheses to be required, or disallowed depending on the configuration. Furthermore, I think the rule should allow you to differentiate between inline closures and multi line closures. For instance, with a particular configuration this would be allowed:
myCollection.filter({ $0 == 1 })
let newCollection = myCollection.map {
2*$0 + 5
}
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
The issue names no implementation files, tests, or entry points. Start by reviewing SwiftLint's existing rule and configuration patterns, then determine how inline and multiline closures should be distinguished and how both required and disallowed parentheses should be validated; done means the rule and its configuration behavior are covered by tests.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- swift
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 38/100