Enable SwiftLint rule 'let_var_whitespace' and fix all violations

This commit is contained in:
Danny Moesch 2020-07-04 23:39:21 +02:00 committed by Mingshen Sun
parent c290ebe427
commit 1b3a8ff0d8
4 changed files with 5 additions and 2 deletions

View file

@ -14,11 +14,12 @@ import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
enum ViewTag: Int {
case blur = 100, appicon
}
var window: UIWindow?
lazy var passcodeLockPresenter: PasscodeLockPresenter = {
let presenter = PasscodeLockPresenter(mainWindow: self.window)
return presenter