chore(mac): apply swiftformat and lint fixes

This commit is contained in:
Peter Steinberger
2025-12-09 04:42:32 +01:00
parent b9cc914729
commit 51aed3ca0a
32 changed files with 416 additions and 236 deletions

View File

@@ -1,7 +1,7 @@
import AppKit
import Foundation
struct SoundEffectCatalog {
enum SoundEffectCatalog {
/// All discoverable system sound names, with "Glass" pinned first.
static var systemOptions: [String] {
var names = Set(Self.discoveredSoundMap.keys).union(Self.fallbackNames)
@@ -13,7 +13,7 @@ struct SoundEffectCatalog {
static func displayName(for raw: String) -> String { raw }
static func url(for name: String) -> URL? {
Self.discoveredSoundMap[name]
self.discoveredSoundMap[name]
}
// MARK: - Internals