Skip to content

Commit

Permalink
fixing linting
Browse files Browse the repository at this point in the history
  • Loading branch information
leogdion committed Oct 22, 2024
1 parent c318685 commit 70e24fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/FelinePine/Logger+LoggerCategory.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
subsystem: String,
category: Category
) where Category.RawValue == String {
self.init(subsystem: subsystem, category: category.rawValue)
self.init(subsystem: subsystem, category: category.rawValue)
}
}
#endif
2 changes: 2 additions & 0 deletions Sources/FelinePine/Logger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
// OTHER DEALINGS IN THE SOFTWARE.
//

// swiftlint:disable missing_docs
#if canImport(os)
public import os
public typealias Logger = os.Logger
#endif
// swiftlint:enable missing_docs

Check notice on line 35 in Sources/FelinePine/Logger.swift

View check run for this annotation

codefactor.io / CodeFactor

Sources/FelinePine/Logger.swift#L35

Files should have a single trailing newline. (trailing_newline)

0 comments on commit 70e24fd

Please sign in to comment.