SwiftLint
SwiftLint copied to clipboard
Spaces in function arguments
I would like to remove spaces before the first function argument and after the last function argument. The rule must be opt-in. Need good style code
Bad
makeGenerator(❗️ style ❗️)
makeGenerator(❗️ style)
makeGenerator(style ❗️)
makeGenerator(❗️ offset: 0, limit: 0)
makeGenerator(offset: 0, limit: 0 ❗️)
Good
makeGenerator(style)
makeGenerator(style)
makeGenerator(style)
makeGenerator(offset: 0, limit: 0)
makeGenerator(offset: 0, limit: 0)
I'll work on it