Enable SwiftLint inside of Xcode

This commit also fixes all linter warnings and errors.
This commit is contained in:
Conrad Kramer 2023-05-09 22:06:56 -04:00
parent 941d465570
commit 3c30a4b336
7 changed files with 130 additions and 21 deletions

View file

@ -26,7 +26,7 @@ extension Tunnel {
return "Disabled"
case .connecting:
return "Connecting"
case .connected(_):
case .connected:
return "Connected"
case .disconnecting:
return "Disconnecting"
@ -40,4 +40,3 @@ extension Tunnel {
}
}
}