From 69ba206d9ff223a5453f222345d9626a9742fce6 Mon Sep 17 00:00:00 2001 From: Takeshi Shimada Date: Thu, 30 Oct 2025 07:44:08 +0900 Subject: [PATCH] fix: Correct modifier order in LocationService initializer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix SwiftLint modifier_order violation by placing `override` before `nonisolated` modifier according to Swift's modifier ordering rules. This ensures CI SwiftLint checks pass with --strict mode. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../DemoApp/Features/LocationTracking/LocationService.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/DemoApp/Features/LocationTracking/LocationService.swift b/Examples/DemoApp/Features/LocationTracking/LocationService.swift index f38608e..e718eff 100644 --- a/Examples/DemoApp/Features/LocationTracking/LocationService.swift +++ b/Examples/DemoApp/Features/LocationTracking/LocationService.swift @@ -8,7 +8,7 @@ final class LocationService: NSObject { private let manager = CLLocationManager() private var continuation: AsyncStream>.Continuation? - nonisolated override init() { + override nonisolated init() { super.init() Task { @MainActor in self.manager.delegate = self