Skip to content

Commit f4a35c4

Browse files
committed
Fix SwiftLint
1 parent 1c7c1fd commit f4a35c4

2 files changed

Lines changed: 18 additions & 4 deletions

File tree

Sources/XCLogParser/loglocation/LogLoader.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,3 @@ public struct LogLoader {
4646
}
4747

4848
}
49-

Sources/XCLogParser/logmanifest/LogManifestModel.swift

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,17 @@ public struct LogManifestEntry: Encodable, Sendable {
4848
public let type: LogManifestEntryType
4949
public let statistics: LogManifestEntryStatistics
5050

51-
public init(uniqueIdentifier: String, title: String, scheme: String, fileName: String,
52-
timestampStart: TimeInterval, timestampEnd: TimeInterval, duration: Double, type: LogManifestEntryType, statistics: LogManifestEntryStatistics) {
51+
public init(
52+
uniqueIdentifier: String,
53+
title: String,
54+
scheme: String,
55+
fileName: String,
56+
timestampStart: TimeInterval,
57+
timestampEnd: TimeInterval,
58+
duration: Double,
59+
type: LogManifestEntryType,
60+
statistics: LogManifestEntryStatistics
61+
) {
5362
self.uniqueIdentifier = uniqueIdentifier
5463
self.title = title
5564
self.scheme = scheme
@@ -70,7 +79,13 @@ public struct LogManifestEntryStatistics: Encodable, Sendable {
7079
public let totalNumberOfTestFailures: Int
7180
public let totalNumberOfWarnings: Int
7281

73-
public init(totalNumberOfErrors: Int, totalNumberOfAnalyzerIssues: Int, highLevelStatus: String, totalNumberOfTestFailures: Int, totalNumberOfWarnings: Int) {
82+
public init(
83+
totalNumberOfErrors: Int,
84+
totalNumberOfAnalyzerIssues: Int,
85+
highLevelStatus: String,
86+
totalNumberOfTestFailures: Int,
87+
totalNumberOfWarnings: Int
88+
) {
7489
self.totalNumberOfErrors = totalNumberOfErrors
7590
self.totalNumberOfAnalyzerIssues = totalNumberOfAnalyzerIssues
7691
self.highLevelStatus = highLevelStatus

0 commit comments

Comments
 (0)