diff --git a/GRDB/Fixits.swift b/GRDB/Fixits.swift index 1092b1164c..174a5ce7e2 100644 --- a/GRDB/Fixits.swift +++ b/GRDB/Fixits.swift @@ -1,4 +1,5 @@ // Fixits for changes introduced by GRDB 7.0.0 +// swiftlint:disable all extension Configuration { @available(*, unavailable, message: "The default transaction kind is now automatically managed.") @@ -15,3 +16,5 @@ extension DatabasePool { @available(*, unavailable, message: "concurrentRead has been removed. Use `asyncConcurrentRead` instead.") public func concurrentRead(_ value: @escaping (Database) throws -> T) -> DatabaseFuture { preconditionFailure() } } + +// swiftlint:enable all