You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new trailing comma rule is very nice, and I want to turn it on for my multiline arrays. But that's triggering errors in my single-line arrays. It seems to me that the rule should only apply to multiline arrays.
In other words, can we make the following valid?
letx=[1,2,3,]lety=[1]
For .swiftlint.yml configuration:
trailing_comma:
mandatory_comma: true
The text was updated successfully, but these errors were encountered:
The new trailing comma rule is very nice, and I want to turn it on for my multiline arrays. But that's triggering errors in my single-line arrays. It seems to me that the rule should only apply to multiline arrays.
In other words, can we make the following valid?
For .swiftlint.yml configuration:
The text was updated successfully, but these errors were encountered: