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
This code:
var imageViews = [UIImageView]()
is causing a warning when I have this in my SwiftLint configuration:
trailing_comma: mandatory_comma: true
This is with SwiftLint 0.13.1.
The text was updated successfully, but these errors were encountered:
Let's try to minimize the false positives and make sure the following doesn't trigger with mandatory_comma:
mandatory_comma
[Void]() [(Void, Void)]()
Perhaps we can kill two birds with one stone by not reporting violations for single-line collections as reported in #910.
Sorry, something went wrong.
Fixed by @marcelofabri in #912.
No branches or pull requests
This code:
is causing a warning when I have this in my SwiftLint configuration:
This is with SwiftLint 0.13.1.
The text was updated successfully, but these errors were encountered: