Skip to content

Commit 125e8a8

Browse files
committed
lint
1 parent ae27353 commit 125e8a8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Sources/App/entrypoint.swift

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@ enum Entrypoint {
2222

2323
// This attempts to install NIO as the Swift Concurrency global executor.
2424
// You should not call any async functions before this point.
25+
// swiftlint:disable:next line_length
2526
let executorTakeoverSuccess = NIOSingletons.unsafeTryInstallSingletonPosixEventLoopGroupAsConcurrencyGlobalExecutor()
26-
app.logger.debug("Running with \(executorTakeoverSuccess ? "SwiftNIO" : "standard") Swift Concurrency default executor")
27+
app.logger.debug(
28+
"Running with \(executorTakeoverSuccess ? "SwiftNIO" : "standard") Swift Concurrency default executor"
29+
)
2730

2831
try await parseServerSwiftConfigure(app)
2932
try await app.execute()

Sources/ParseServerSwift/Extensions/Parse+Vapor.swift

-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ public extension ParseHookRequestable {
2424
*/
2525
func options(
2626
_ request: Request,
27-
// swiftlint:disable:next line_length
2827
parseServerURLStrings: [String] = ParseServerSwift.configuration.parseServerURLStrings
2928
) throws -> API.Options {
3029
var options = self.options()
@@ -47,7 +46,6 @@ public extension ParseHookRequestable {
4746
func hydrateUser(
4847
options: API.Options = [],
4948
request: Request,
50-
// swiftlint:disable:next line_length
5149
parseServerURLStrings: [String] = ParseServerSwift.configuration.parseServerURLStrings
5250
) async throws -> Self {
5351
var updatedOptions = try self.options(request, parseServerURLStrings: parseServerURLStrings)

0 commit comments

Comments
 (0)