Open marcelofabri opened 5 years ago
Issue Description:
Xcode/SourceKit formats like this:
let bar = [ "baz", "blee", ].count let bar = [ "baz", "blee", ].map { $0 }
This is how it should be formatted:
let bar = [ "baz", "blee" ].count let bar = [ "baz", "blee" ].map { $0 }
CC @nkcsgexi
Environment
Swift 5.0Additional Detail from JIRA
| | | |------------------|-----------------| |Votes | 0 | |Component/s | Source Tooling | |Labels | Bug | |Assignee | None | |Priority | Medium | md5: 1424e76adf8b29739b03db0a186530c9Issue Description:
Xcode/SourceKit formats like this:
This is how it should be formatted: