Ilya Levchenko
Ilya Levchenko

Reputation: 84

Xcode autocorrection tool?

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

Answers (1)

Max MacLeod
Max MacLeod

Reputation: 26652

swiftlint has autocorrection. Run:

swiftlint autocorrect

See https://github.com/realm/SwiftLint

Upvotes: 1

Related Questions