SwiftLint redundant_string_enum_value

This commit is contained in:
Nindi Gill 2023-11-19 19:30:28 +11:00
parent 86a4f0d2cf
commit df4971edc2
No known key found for this signature in database
GPG key ID: FF9A7FD590D4F4B1
3 changed files with 0 additions and 14 deletions

View file

@ -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
}

View file

@ -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 {

View file

@ -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
}