Skip to content

Commit 4ace13f

Browse files
committed
Fix linting
1 parent b9b84c3 commit 4ace13f

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

Sources/SwiftUIKit/Resources/Localizable.xcstrings

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
},
1616
"1" : {
1717

18-
},
19-
"Back" : {
20-
2118
},
2219
"Button.Add" : {
2320
"localizations" : {
@@ -228,12 +225,6 @@
228225
}
229226
}
230227
}
231-
},
232-
"Flip" : {
233-
234-
},
235-
"Front" : {
236-
237228
},
238229
"Preview.Page.%@" : {
239230
"localizations" : {

Sources/SwiftUIKit/Views/FetchedDataView.swift

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,11 @@ public struct FetchedDataView<Model, Content: View, LoadingView: View, NoDataVie
8888
systemImage: "x.circle"
8989
)
9090
.foregroundStyle(.red)
91+
},
92+
content: { string in
93+
Text(string)
9194
}
92-
) { string in
93-
Text(string)
94-
}
95+
)
9596
}
9697
}
9798
}

Sources/SwiftUIKit/_Deprecated/TextReplacement.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// swiftlint:disable all
12
import SwiftUI
23

34
@available(*, deprecated, message: "This view has been moved to the https://github.com/danielsaidi/TextReplacementView repository.")
@@ -106,3 +107,4 @@ public struct TextReplacement: View {
106107
return result
107108
}
108109
}
110+
// swiftlint:enable all

0 commit comments

Comments
 (0)