We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running swiftlint autocorrect will fix lines that are wrapped with swiftlint-disable/enable.
swiftlint autocorrect
swiftlint-disable/enable
For instance:
// swiftlint:disable comma let cancelOptions = [ XLFormOptionsObject(value: TestConfig.CancelMode.NotCancelled.rawValue, displayText: "Not cancelled"), - XLFormOptionsObject(value: TestConfig.CancelMode.ByThem.rawValue, displayText: "Cancelled by them"), - XLFormOptionsObject(value: TestConfig.CancelMode.ByMe.rawValue, displayText: "Cancelled by me") + XLFormOptionsObject(value: TestConfig.CancelMode.ByThem.rawValue, displayText: "Cancelled by them"), + XLFormOptionsObject(value: TestConfig.CancelMode.ByMe.rawValue, displayText: "Cancelled by me") ] // swiftlint:enable comma
SwiftLint 0.9.2
The text was updated successfully, but these errors were encountered:
autocorrect honors local disable for comma
9cbaab6
closes realm#601
update realm#601 changelog
257d963
updated change log realm#601
ebc2617
update changelog with realm#601
a513810
Successfully merging a pull request may close this issue.
Running
swiftlint autocorrect
will fix lines that are wrapped withswiftlint-disable/enable
.For instance:
SwiftLint 0.9.2
The text was updated successfully, but these errors were encountered: