diff --git a/Mist/Model/Catalog.swift b/Mist/Model/Catalog.swift index 2eaff2b..f620dec 100644 --- a/Mist/Model/Catalog.swift +++ b/Mist/Model/Catalog.swift @@ -9,15 +9,10 @@ import Foundation struct Catalog: Identifiable, Decodable, Equatable { enum CodingKeys: String, CodingKey { - // swiftlint:disable:next redundant_string_enum_value case type - // swiftlint:disable:next redundant_string_enum_value case standard - // swiftlint:disable:next redundant_string_enum_value case customerSeed - // swiftlint:disable:next redundant_string_enum_value case developerSeed - // swiftlint:disable:next redundant_string_enum_value case publicSeed } diff --git a/Mist/Model/ExportListType.swift b/Mist/Model/ExportListType.swift index 5c71103..6e91bc9 100644 --- a/Mist/Model/ExportListType.swift +++ b/Mist/Model/ExportListType.swift @@ -8,13 +8,9 @@ import UniformTypeIdentifiers enum ExportListType: String, CaseIterable, Identifiable { - // swiftlint:disable:next redundant_string_enum_value case csv - // swiftlint:disable:next redundant_string_enum_value case json - // swiftlint:disable:next redundant_string_enum_value case plist - // swiftlint:disable:next redundant_string_enum_value case yaml var id: String { diff --git a/Shared/HelperToolCommandType.swift b/Shared/HelperToolCommandType.swift index eb3f39b..4557063 100644 --- a/Shared/HelperToolCommandType.swift +++ b/Shared/HelperToolCommandType.swift @@ -6,14 +6,9 @@ // enum HelperToolCommandType: String, Codable { - // swiftlint:disable:next redundant_string_enum_value case remove - // swiftlint:disable:next redundant_string_enum_value case fileAttributes - // swiftlint:disable:next redundant_string_enum_value case installer - // swiftlint:disable:next redundant_string_enum_value case createinstallmedia - // swiftlint:disable:next redundant_string_enum_value case kill }