mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
a583b8e22c
It fixes following error: > Source/swiftlint/Commands/LintCommand.swift:35:27: error: cannot invoke 'appendContentsOf' with an argument list of type '([(rule: String, time: Double)])' > ruleTimes.appendContentsOf(currentRuleTimes) > ^ >Source/swiftlint/Commands/LintCommand.swift:35:27: note: expected an argument list of type '(C)' > ruleTimes.appendContentsOf(currentRuleTimes) > ^ It seems Swift does not allow label mismatch on that.