woshiccm / Pecker

CodePecker is a tool to detect unused Swift code.
MIT License
1.46k stars 63 forks source link

False Positive - CodingKeys inside of Codable structs #10

Closed Sherlouk closed 4 years ago

Sherlouk commented 4 years ago
struct Model: Codable {
  enum CodingKeys: String, CodingKey { // Warning
    case value
  }
  let value: String
}
woshiccm commented 4 years ago

Wow, thank you so much, your issues are so useful

woshiccm commented 4 years ago

fixed