Reputation: 84
Are there any tool similar to swiftlint but with easy (15-30 minutes) way to auto correct violated rule?
Scenario: "Rule - comment should have space and Capital letter in the beginning" Wrong line 1: "//line 1" Should be autocorrected to "// Line 1"
Upvotes: -1
Views: 864
Reputation: 26652
swiftlint has autocorrection. Run:
swiftlint autocorrect
See https://github.com/realm/SwiftLint
Upvotes: 1