Refactor Linter warnings

This commit is contained in:
Nindi Gill 2022-12-08 11:40:00 +11:00
parent 1688095e18
commit a2b3412b14
4 changed files with 14 additions and 18 deletions

View file

@ -8,9 +8,12 @@
import Foundation
enum HelperToolCommandType: String, Codable {
// swiftlint:disable redundant_string_enum_value
// swiftlint:disable:next redundant_string_enum_value
case remove = "remove"
// swiftlint:disable:next redundant_string_enum_value
case installer = "installer"
// swiftlint:disable:next redundant_string_enum_value
case createinstallmedia = "createinstallmedia"
// swiftlint:disable:next redundant_string_enum_value
case kill = "kill"
}