Skip to content

Commit

Permalink
lint trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
yassram committed Nov 8, 2023
1 parent 5a4e847 commit 94cd471
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/LicensePlistCore/Entity/LicenseCSVHolder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ struct LicenseCSVHolder {
"Component",
"License",
options.config.addSources ? "Origin" : nil,
"Copyright",
"Copyright"
]
.compactMap { $0 }
.joined(separator: .delemiter) + .newLine
Expand All @@ -22,13 +22,13 @@ struct LicenseCSVHolder {
component,
licenseType,
source,
copyright,
copyright
].joined(separator: .delemiter)
} else {
csv += [
component,
licenseType,
copyright,
copyright
].joined(separator: .delemiter)
}
csv += .newLine
Expand Down

0 comments on commit 94cd471

Please sign in to comment.