Skip to content

Commit

Permalink
Style code
Browse files Browse the repository at this point in the history
  • Loading branch information
1024jp committed Dec 19, 2024
1 parent 80942be commit 0db5f85
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
deployment_target:
macOS_deployment_target: 14

excluded:
- "*/.build"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import AppKit

extension NSAttributedString.Key {

static let roundedBackgroundColor = NSAttributedString.Key(rawValue: "roundedBackgroundColor")
static let roundedBackgroundColor = NSAttributedString.Key("roundedBackgroundColor")
}


Expand Down
2 changes: 1 addition & 1 deletion CotEditor/Sources/Models/IssueReport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct IssueReport {

Heading.allCases[1...]
.map { $0.display() }
.joined(separator: String(repeating: "\n", count: 3))
.joined(separator: String(repeating: "\n", count: 3)),
].joined(separator: String(repeating: "\n", count: 3)) + "\n"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct SettingState: Equatable {
extension NSNotification.Name {

/// Notification when a setting file is updated with new/previous setting names.
static let didUpdateSettingNotification = Notification.Name(rawValue: "SettingFileManaging.didUpdateSettingNotification")
static let didUpdateSettingNotification = Notification.Name("SettingFileManaging.didUpdateSettingNotification")
}


Expand Down

0 comments on commit 0db5f85

Please sign in to comment.