The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of swift-format, reference main (cbe488), with Swift 6.1 for macOS (SPM) on 26 Jun 2025 20:34:25 UTC.

Swift 6 data race errors: 88

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

608 |
609 | extension Finding.Message {
610 |   fileprivate static let placeAtTopOfFile: Finding.Message = "place imports at the top of the file"
    |                          |- warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'placeAtTopOfFile' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
611 |
612 |   fileprivate static func groupImports(before: LineType, after: LineType) -> Finding.Message {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:616:26: warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
614 |   }
615 |
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
    |                          |- warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeDuplicateImport' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:618:26: warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
    |                          |- warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'sortImports' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 | }
620 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/ReturnVoidInsteadOfEmptyTuple.swift:125:26: warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let returnVoid: Finding.Message = "replace '()' with 'Void'"
    |                          |- warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'returnVoid' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | }
127 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseEarlyExits.swift:112:26: warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
110 |
111 | extension Finding.Message {
112 |   fileprivate static let useGuardStatement: Finding.Message =
    |                          |- warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useGuardStatement' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     "replace this 'if/else' block with a 'guard' statement containing the early exit"
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseExplicitNilCheckInConditions.swift:123:26: warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
121 |
122 | extension Finding.Message {
123 |   fileprivate static let useExplicitNilComparison: Finding.Message =
    |                          |- warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useExplicitNilComparison' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     "compare this value using `!= nil` instead of binding and discarding it"
125 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[933/958] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OnlyOneTrailingClosureArgument.swift:33:26: warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension Finding.Message {
33 |   fileprivate static let removeTrailingClosure: Finding.Message =
   |                          |- warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'removeTrailingClosure' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     "revise this function call to avoid using both closure arguments and a trailing closure"
35 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:610:26: warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
608 |
609 | extension Finding.Message {
610 |   fileprivate static let placeAtTopOfFile: Finding.Message = "place imports at the top of the file"
    |                          |- warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'placeAtTopOfFile' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
611 |
612 |   fileprivate static func groupImports(before: LineType, after: LineType) -> Finding.Message {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:616:26: warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
614 |   }
615 |
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
    |                          |- warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeDuplicateImport' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:618:26: warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
    |                          |- warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'sortImports' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 | }
620 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/ReturnVoidInsteadOfEmptyTuple.swift:125:26: warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let returnVoid: Finding.Message = "replace '()' with 'Void'"
    |                          |- warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'returnVoid' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | }
127 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseEarlyExits.swift:112:26: warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
110 |
111 | extension Finding.Message {
112 |   fileprivate static let useGuardStatement: Finding.Message =
    |                          |- warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useGuardStatement' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     "replace this 'if/else' block with a 'guard' statement containing the early exit"
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseExplicitNilCheckInConditions.swift:123:26: warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
121 |
122 | extension Finding.Message {
123 |   fileprivate static let useExplicitNilComparison: Finding.Message =
    |                          |- warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useExplicitNilComparison' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     "compare this value using `!= nil` instead of binding and discarding it"
125 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[934/958] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OnlyOneTrailingClosureArgument.swift:33:26: warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension Finding.Message {
33 |   fileprivate static let removeTrailingClosure: Finding.Message =
   |                          |- warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'removeTrailingClosure' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     "revise this function call to avoid using both closure arguments and a trailing closure"
35 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:610:26: warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
608 |
609 | extension Finding.Message {
610 |   fileprivate static let placeAtTopOfFile: Finding.Message = "place imports at the top of the file"
    |                          |- warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'placeAtTopOfFile' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
611 |
612 |   fileprivate static func groupImports(before: LineType, after: LineType) -> Finding.Message {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:616:26: warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
614 |   }
615 |
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
    |                          |- warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeDuplicateImport' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:618:26: warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
    |                          |- warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'sortImports' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 | }
620 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/ReturnVoidInsteadOfEmptyTuple.swift:125:26: warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let returnVoid: Finding.Message = "replace '()' with 'Void'"
    |                          |- warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'returnVoid' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | }
127 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseEarlyExits.swift:112:26: warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
110 |
111 | extension Finding.Message {
112 |   fileprivate static let useGuardStatement: Finding.Message =
    |                          |- warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useGuardStatement' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     "replace this 'if/else' block with a 'guard' statement containing the early exit"
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseExplicitNilCheckInConditions.swift:123:26: warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
121 |
122 | extension Finding.Message {
123 |   fileprivate static let useExplicitNilComparison: Finding.Message =
    |                          |- warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useExplicitNilComparison' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     "compare this value using `!= nil` instead of binding and discarding it"
125 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[935/958] Compiling SwiftFormat UseEarlyExits.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OnlyOneTrailingClosureArgument.swift:33:26: warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension Finding.Message {
33 |   fileprivate static let removeTrailingClosure: Finding.Message =
   |                          |- warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'removeTrailingClosure' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     "revise this function call to avoid using both closure arguments and a trailing closure"
35 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:610:26: warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
608 |
609 | extension Finding.Message {
610 |   fileprivate static let placeAtTopOfFile: Finding.Message = "place imports at the top of the file"
    |                          |- warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'placeAtTopOfFile' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
611 |
612 |   fileprivate static func groupImports(before: LineType, after: LineType) -> Finding.Message {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:616:26: warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
614 |   }
615 |
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
    |                          |- warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeDuplicateImport' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:618:26: warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
    |                          |- warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'sortImports' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 | }
620 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/ReturnVoidInsteadOfEmptyTuple.swift:125:26: warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let returnVoid: Finding.Message = "replace '()' with 'Void'"
    |                          |- warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'returnVoid' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | }
127 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseEarlyExits.swift:112:26: warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
110 |
111 | extension Finding.Message {
112 |   fileprivate static let useGuardStatement: Finding.Message =
    |                          |- warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useGuardStatement' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     "replace this 'if/else' block with a 'guard' statement containing the early exit"
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseExplicitNilCheckInConditions.swift:123:26: warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
121 |
122 | extension Finding.Message {
123 |   fileprivate static let useExplicitNilComparison: Finding.Message =
    |                          |- warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useExplicitNilComparison' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     "compare this value using `!= nil` instead of binding and discarding it"
125 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[936/958] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OnlyOneTrailingClosureArgument.swift:33:26: warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension Finding.Message {
33 |   fileprivate static let removeTrailingClosure: Finding.Message =
   |                          |- warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'removeTrailingClosure' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     "revise this function call to avoid using both closure arguments and a trailing closure"
35 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:610:26: warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
608 |
609 | extension Finding.Message {
610 |   fileprivate static let placeAtTopOfFile: Finding.Message = "place imports at the top of the file"
    |                          |- warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'placeAtTopOfFile' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
611 |
612 |   fileprivate static func groupImports(before: LineType, after: LineType) -> Finding.Message {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:616:26: warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
614 |   }
615 |
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
    |                          |- warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeDuplicateImport' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:618:26: warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
    |                          |- warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'sortImports' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 | }
620 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/ReturnVoidInsteadOfEmptyTuple.swift:125:26: warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let returnVoid: Finding.Message = "replace '()' with 'Void'"
    |                          |- warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'returnVoid' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | }
127 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseEarlyExits.swift:112:26: warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
110 |
111 | extension Finding.Message {
112 |   fileprivate static let useGuardStatement: Finding.Message =
    |                          |- warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useGuardStatement' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     "replace this 'if/else' block with a 'guard' statement containing the early exit"
114 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/UseExplicitNilCheckInConditions.swift:123:26: warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
121 |
122 | extension Finding.Message {
123 |   fileprivate static let useExplicitNilComparison: Finding.Message =
    |                          |- warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useExplicitNilComparison' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     "compare this value using `!= nil` instead of binding and discarding it"
125 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[937/958] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[938/958] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[939/958] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[940/958] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[941/958] Compiling SwiftFormat AvoidRetroactiveConformances.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[942/958] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[943/958] Compiling SwiftFormat DoNotUseSemicolons.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[944/958] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[945/958] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[946/976] Compiling swift_format FileHandleTextOutputStream.swift
[947/976] Compiling swift_format StderrDiagnosticPrinter.swift
[948/976] Compiling swift_format Diagnostic.swift
[949/976] Compiling swift_format DiagnosticsEngine.swift
[950/977] Compiling swift_format TTY.swift
[951/977] Compiling swift_format PrintVersion.swift
[952/977] Compiling swift_format ConfigurationOptions.swift
[953/977] Compiling swift_format PerformanceMeasurement.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/SwiftFormatCommand.swift:19:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | @main
18 | struct SwiftFormatCommand: ParsableCommand {
19 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     commandName: "swift-format",
21 |     abstract: "Format or lint Swift source code",
[954/977] Compiling swift_format SwiftFormatCommand.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/SwiftFormatCommand.swift:19:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | @main
18 | struct SwiftFormatCommand: ParsableCommand {
19 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     commandName: "swift-format",
21 |     abstract: "Format or lint Swift source code",
[955/977] Compiling swift_format ConfigurationLoader.swift
[956/977] Compiling swift_format FormatFrontend.swift
[957/977] Compiling swift_format DumpConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the configuration in JSON format to standard output",
22 |       discussion: """
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
[958/977] Compiling swift_format Format.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the configuration in JSON format to standard output",
22 |       discussion: """
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
[959/977] Compiling swift_format Lint.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
[960/977] Compiling swift_format LintFormatOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
[961/977] Emitting module swift_format
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the configuration in JSON format to standard output",
22 |       discussion: """
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/SwiftFormatCommand.swift:19:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | @main
18 | struct SwiftFormatCommand: ParsableCommand {
19 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     commandName: "swift-format",
21 |     abstract: "Format or lint Swift source code",
[962/977] Compiling swift_format Frontend.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure
 16 | import SwiftSyntax
 17 |
 18 | class Frontend {
    |       `- note: class 'Frontend' does not conform to the 'Sendable' protocol
 19 |   /// Provides formatter configurations for given `.swift` source files, configuration files or configuration strings.
 20 |   struct ConfigurationProvider {
    :
292 |         .compactMap(openAndPrepareFile)
293 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
294 |         processFile(filesToProcess[index])
    |         `- warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure
295 |       }
296 |     } else {
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:21: warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure
131 |   /// Represents a file to be processed by the frontend and any file-specific options associated
132 |   /// with it.
133 |   final class FileToProcess {
    |               `- note: class 'FileToProcess' does not conform to the 'Sendable' protocol
134 |     /// An open file handle to the source code of the file.
135 |     private let fileHandle: FileHandle
    :
292 |         .compactMap(openAndPrepareFile)
293 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
294 |         processFile(filesToProcess[index])
    |                     `- warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure
295 |       }
296 |     } else {
[963/977] Compiling swift_format LintFrontend.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure
 16 | import SwiftSyntax
 17 |
 18 | class Frontend {
    |       `- note: class 'Frontend' does not conform to the 'Sendable' protocol
 19 |   /// Provides formatter configurations for given `.swift` source files, configuration files or configuration strings.
 20 |   struct ConfigurationProvider {
    :
292 |         .compactMap(openAndPrepareFile)
293 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
294 |         processFile(filesToProcess[index])
    |         `- warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure
295 |       }
296 |     } else {
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:21: warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure
131 |   /// Represents a file to be processed by the frontend and any file-specific options associated
132 |   /// with it.
133 |   final class FileToProcess {
    |               `- note: class 'FileToProcess' does not conform to the 'Sendable' protocol
134 |     /// An open file handle to the source code of the file.
135 |     private let fileHandle: FileHandle
    :
292 |         .compactMap(openAndPrepareFile)
293 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
294 |         processFile(filesToProcess[index])
    |                     `- warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure
295 |       }
296 |     } else {
[964/977] Compiling swift_format VersionOptions.swift
[964/977] Write Objects.LinkFileList
[965/977] Linking generate-swift-format
[966/977] Applying generate-swift-format
[967/977] Linking swift-format
[968/977] Applying swift-format
[969/977] Linking swift-format-tool
[970/977] Applying swift-format-tool
[972/977] Compiling _SwiftFormatTestSupport MarkedText.swift
[973/977] Compiling _SwiftFormatTestSupport Parsing.swift
[974/977] Compiling _SwiftFormatTestSupport FindingSpec.swift
[975/977] Compiling _SwiftFormatTestSupport Configuration+Testing.swift
[976/977] Emitting module _SwiftFormatTestSupport
[977/977] Compiling _SwiftFormatTestSupport DiagnosingTestCase.swift
Build complete! (42.97s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    },
    {
      "identity" : "swift-markdown",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-markdown.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "swift-format",
  "name" : "swift-format",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    }
  ],
  "products" : [
    {
      "name" : "swift-format",
      "targets" : [
        "swift-format"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "SwiftFormat",
      "targets" : [
        "SwiftFormat"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "FormatPlugin",
      "targets" : [
        "Format Source Code"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "LintPlugin",
      "targets" : [
        "Lint Source Code"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "generate-swift-format",
      "targets" : [
        "generate-swift-format"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "swift_format",
      "module_type" : "SwiftTarget",
      "name" : "swift-format",
      "path" : "Sources/swift-format",
      "product_dependencies" : [
        "ArgumentParser",
        "SwiftDiagnostics",
        "SwiftParser",
        "SwiftSyntax"
      ],
      "product_memberships" : [
        "swift-format",
        "FormatPlugin",
        "LintPlugin"
      ],
      "sources" : [
        "Frontend/ConfigurationLoader.swift",
        "Frontend/FormatFrontend.swift",
        "Frontend/Frontend.swift",
        "Frontend/LintFrontend.swift",
        "PrintVersion.swift",
        "Subcommands/ConfigurationOptions.swift",
        "Subcommands/DumpConfiguration.swift",
        "Subcommands/Format.swift",
        "Subcommands/Lint.swift",
        "Subcommands/LintFormatOptions.swift",
        "Subcommands/PerformanceMeasurement.swift",
        "SwiftFormatCommand.swift",
        "Utilities/Diagnostic.swift",
        "Utilities/DiagnosticsEngine.swift",
        "Utilities/FileHandleTextOutputStream.swift",
        "Utilities/StderrDiagnosticPrinter.swift",
        "Utilities/TTY.swift",
        "VersionOptions.swift"
      ],
      "target_dependencies" : [
        "_SwiftFormatInstructionCounter",
        "SwiftFormat"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "generate_swift_format",
      "module_type" : "SwiftTarget",
      "name" : "generate-swift-format",
      "path" : "Sources/generate-swift-format",
      "product_memberships" : [
        "generate-swift-format"
      ],
      "sources" : [
        "FileGenerator.swift",
        "PipelineGenerator.swift",
        "RuleCollector.swift",
        "RuleDocumentationGenerator.swift",
        "RuleNameCacheGenerator.swift",
        "RuleRegistryGenerator.swift",
        "Syntax+Convenience.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "_SwiftFormatTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "_SwiftFormatTestSupport",
      "path" : "Sources/_SwiftFormatTestSupport",
      "product_dependencies" : [
        "SwiftOperators",
        "SwiftParser",
        "SwiftParserDiagnostics",
        "SwiftSyntax",
        "SwiftSyntaxBuilder"
      ],
      "sources" : [
        "Configuration+Testing.swift",
        "DiagnosingTestCase.swift",
        "FindingSpec.swift",
        "MarkedText.swift",
        "Parsing.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_SwiftFormatInstructionCounter",
      "module_type" : "ClangTarget",
      "name" : "_SwiftFormatInstructionCounter",
      "path" : "Sources/_SwiftFormatInstructionCounter",
      "product_memberships" : [
        "swift-format",
        "FormatPlugin",
        "LintPlugin"
      ],
      "sources" : [
        "src/InstructionsExecuted.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftFormatTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFormatTests",
      "path" : "Tests/SwiftFormatTests",
      "product_dependencies" : [
        "Markdown",
        "SwiftOperators",
        "SwiftParser",
        "SwiftSyntax",
        "SwiftSyntaxBuilder"
      ],
      "sources" : [
        "API/ConfigurationTests.swift",
        "Core/DocumentationCommentTests.swift",
        "Core/DocumentationCommentTextTests.swift",
        "Core/RuleMaskTests.swift",
        "PrettyPrint/AccessorTests.swift",
        "PrettyPrint/ArrayDeclTests.swift",
        "PrettyPrint/AsExprTests.swift",
        "PrettyPrint/AssignmentExprTests.swift",
        "PrettyPrint/AttributeTests.swift",
        "PrettyPrint/AvailabilityConditionTests.swift",
        "PrettyPrint/BackDeployAttributeTests.swift",
        "PrettyPrint/BacktickTests.swift",
        "PrettyPrint/BinaryOperatorExprTests.swift",
        "PrettyPrint/BorrowExprTests.swift",
        "PrettyPrint/ClassDeclTests.swift",
        "PrettyPrint/ClosureExprTests.swift",
        "PrettyPrint/CommaTests.swift",
        "PrettyPrint/CommentTests.swift",
        "PrettyPrint/ConstrainedSugarTypeTests.swift",
        "PrettyPrint/ConsumeExprTests.swift",
        "PrettyPrint/CopyExprSyntax.swift",
        "PrettyPrint/DeclNameArgumentTests.swift",
        "PrettyPrint/DeinitializerDeclTests.swift",
        "PrettyPrint/DictionaryDeclTests.swift",
        "PrettyPrint/DifferentiationAttributeTests.swift",
        "PrettyPrint/DiscardStmtTests.swift",
        "PrettyPrint/DoStmtTests.swift",
        "PrettyPrint/EnumDeclTests.swift",
        "PrettyPrint/ExpressionModifierTests.swift",
        "PrettyPrint/ExtensionDeclTests.swift",
        "PrettyPrint/ForInStmtTests.swift",
        "PrettyPrint/FunctionCallTests.swift",
        "PrettyPrint/FunctionDeclTests.swift",
        "PrettyPrint/FunctionTypeTests.swift",
        "PrettyPrint/GarbageTextTests.swift",
        "PrettyPrint/GuardStmtTests.swift",
        "PrettyPrint/IfConfigTests.swift",
        "PrettyPrint/IfStmtTests.swift",
        "PrettyPrint/IgnoreNodeTests.swift",
        "PrettyPrint/ImportTests.swift",
        "PrettyPrint/IndentBlankLinesTests.swift",
        "PrettyPrint/InitializerDeclTests.swift",
        "PrettyPrint/KeyPathExprTests.swift",
        "PrettyPrint/LineNumbersTests.swift",
        "PrettyPrint/MacroCallTests.swift",
        "PrettyPrint/MacroDeclTests.swift",
        "PrettyPrint/MemberAccessExprTests.swift",
        "PrettyPrint/MemberTypeIdentifierTests.swift",
        "PrettyPrint/NewlineTests.swift",
        "PrettyPrint/ObjectLiteralExprTests.swift",
        "PrettyPrint/OperatorDeclTests.swift",
        "PrettyPrint/ParameterPackTests.swift",
        "PrettyPrint/ParenthesizedExprTests.swift",
        "PrettyPrint/PatternBindingTests.swift",
        "PrettyPrint/PrettyPrintTestCase.swift",
        "PrettyPrint/ProtocolDeclTests.swift",
        "PrettyPrint/RepeatStmtTests.swift",
        "PrettyPrint/RespectsExistingLineBreaksTests.swift",
        "PrettyPrint/SelectionTests.swift",
        "PrettyPrint/SemicolonTests.swift",
        "PrettyPrint/StringTests.swift",
        "PrettyPrint/StructDeclTests.swift",
        "PrettyPrint/SubscriptDeclTests.swift",
        "PrettyPrint/SubscriptExprTests.swift",
        "PrettyPrint/SwitchCaseIndentConfigTests.swift",
        "PrettyPrint/SwitchStmtTests.swift",
        "PrettyPrint/TernaryExprTests.swift",
        "PrettyPrint/TupleDeclTests.swift",
        "PrettyPrint/TypeAliasTests.swift",
        "PrettyPrint/ValueGenericsTests.swift",
        "PrettyPrint/VariableDeclTests.swift",
        "PrettyPrint/WhileStmtTests.swift",
        "PrettyPrint/WhitespaceLintTests.swift",
        "PrettyPrint/WhitespaceTestCase.swift",
        "PrettyPrint/YieldStmtTests.swift",
        "Rules/AllPublicDeclarationsHaveDocumentationTests.swift",
        "Rules/AlwaysUseLiteralForEmptyCollectionInitTests.swift",
        "Rules/AlwaysUseLowerCamelCaseTests.swift",
        "Rules/AmbiguousTrailingClosureOverloadTests.swift",
        "Rules/AvoidRetroactiveConformancesTests.swift",
        "Rules/BeginDocumentationCommentWithOneLineSummaryTests.swift",
        "Rules/DoNotUseSemicolonsTests.swift",
        "Rules/DontRepeatTypeInStaticPropertiesTests.swift",
        "Rules/FileScopedDeclarationPrivacyTests.swift",
        "Rules/FullyIndirectEnumTests.swift",
        "Rules/GroupNumericLiteralsTests.swift",
        "Rules/IdentifiersMustBeASCIITests.swift",
        "Rules/ImportsXCTestVisitorTests.swift",
        "Rules/LintOrFormatRuleTestCase.swift",
        "Rules/NeverForceUnwrapTests.swift",
        "Rules/NeverUseForceTryTests.swift",
        "Rules/NeverUseImplicitlyUnwrappedOptionalsTests.swift",
        "Rules/NoAccessLevelOnExtensionDeclarationTests.swift",
        "Rules/NoAssignmentInExpressionsTests.swift",
        "Rules/NoBlockCommentsTests.swift",
        "Rules/NoCasesWithOnlyFallthroughTests.swift",
        "Rules/NoEmptyLinesOpeningClosingBracesTests.swift",
        "Rules/NoEmptyTrailingClosureParenthesesTests.swift",
        "Rules/NoLabelsInCasePatternsTests.swift",
        "Rules/NoLeadingUnderscoresTests.swift",
        "Rules/NoParensAroundConditionsTests.swift",
        "Rules/NoPlaygroundLiteralsTests.swift",
        "Rules/NoVoidReturnOnFunctionSignatureTests.swift",
        "Rules/OmitReturnsTests.swift",
        "Rules/OneCasePerLineTests.swift",
        "Rules/OneVariableDeclarationPerLineTests.swift",
        "Rules/OnlyOneTrailingClosureArgumentTests.swift",
        "Rules/OrderedImportsTests.swift",
        "Rules/ReplaceForEachWithForLoopTests.swift",
        "Rules/ReturnVoidInsteadOfEmptyTupleTests.swift",
        "Rules/TypeNamesShouldBeCapitalizedTests.swift",
        "Rules/UseEarlyExitsTests.swift",
        "Rules/UseExplicitNilCheckInConditionsTests.swift",
        "Rules/UseLetInEveryBoundCaseVariableTests.swift",
        "Rules/UseShorthandTypeNamesTests.swift",
        "Rules/UseSingleLinePropertyGetterTests.swift",
        "Rules/UseSynthesizedInitializerTests.swift",
        "Rules/UseTripleSlashForDocumentationCommentsTests.swift",
        "Rules/UseWhereClausesInForLoopsTests.swift",
        "Rules/ValidateDocumentationCommentsTests.swift",
        "Utilities/FileIteratorTests.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat",
        "_SwiftFormatTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftFormatPerformanceTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFormatPerformanceTests",
      "path" : "Tests/SwiftFormatPerformanceTests",
      "product_dependencies" : [
        "SwiftParser",
        "SwiftSyntax"
      ],
      "sources" : [
        "WhitespaceLinterPerformanceTests.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat",
        "_SwiftFormatTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftFormat",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFormat",
      "path" : "Sources/SwiftFormat",
      "product_dependencies" : [
        "Markdown",
        "SwiftOperators",
        "SwiftParser",
        "SwiftParserDiagnostics",
        "SwiftSyntax",
        "SwiftSyntaxBuilder"
      ],
      "product_memberships" : [
        "swift-format",
        "SwiftFormat",
        "FormatPlugin",
        "LintPlugin",
        "generate-swift-format"
      ],
      "sources" : [
        "API/Configuration+Default.swift",
        "API/Configuration+Dump.swift",
        "API/Configuration.swift",
        "API/DebugOptions.swift",
        "API/Finding.swift",
        "API/FindingCategorizing.swift",
        "API/Indent.swift",
        "API/Selection.swift",
        "API/SwiftFormatError.swift",
        "API/SwiftFormatter.swift",
        "API/SwiftLinter.swift",
        "Core/Context.swift",
        "Core/DocumentationComment.swift",
        "Core/DocumentationCommentText.swift",
        "Core/Finding+Convenience.swift",
        "Core/FindingEmitter.swift",
        "Core/FormatPipeline.swift",
        "Core/FunctionDeclSyntax+Convenience.swift",
        "Core/ImportsXCTestVisitor.swift",
        "Core/LazySplitSequence.swift",
        "Core/LintPipeline.swift",
        "Core/ModifierListSyntax+Convenience.swift",
        "Core/Parsing.swift",
        "Core/Pipelines+Generated.swift",
        "Core/RememberingIterator.swift",
        "Core/Rule.swift",
        "Core/RuleBasedFindingCategory.swift",
        "Core/RuleMask.swift",
        "Core/RuleNameCache+Generated.swift",
        "Core/RuleRegistry+Generated.swift",
        "Core/RuleState.swift",
        "Core/SyntaxFormatRule.swift",
        "Core/SyntaxLintRule.swift",
        "Core/SyntaxProtocol+Convenience.swift",
        "Core/SyntaxTraits.swift",
        "Core/Trivia+Convenience.swift",
        "Core/WithAttributesSyntax+Convenience.swift",
        "Core/WithSemicolonSyntax.swift",
        "PrettyPrint/Comment.swift",
        "PrettyPrint/Indent+Length.swift",
        "PrettyPrint/PrettyPrint.swift",
        "PrettyPrint/PrettyPrintBuffer.swift",
        "PrettyPrint/PrettyPrintFindingCategory.swift",
        "PrettyPrint/Token.swift",
        "PrettyPrint/TokenStreamCreator.swift",
        "PrettyPrint/Verbatim.swift",
        "PrettyPrint/WhitespaceFindingCategory.swift",
        "PrettyPrint/WhitespaceLinter.swift",
        "Rules/AllPublicDeclarationsHaveDocumentation.swift",
        "Rules/AlwaysUseLiteralForEmptyCollectionInit.swift",
        "Rules/AlwaysUseLowerCamelCase.swift",
        "Rules/AmbiguousTrailingClosureOverload.swift",
        "Rules/AvoidRetroactiveConformances.swift",
        "Rules/BeginDocumentationCommentWithOneLineSummary.swift",
        "Rules/DoNotUseSemicolons.swift",
        "Rules/DontRepeatTypeInStaticProperties.swift",
        "Rules/FileScopedDeclarationPrivacy.swift",
        "Rules/FullyIndirectEnum.swift",
        "Rules/GroupNumericLiterals.swift",
        "Rules/IdentifiersMustBeASCII.swift",
        "Rules/NeverForceUnwrap.swift",
        "Rules/NeverUseForceTry.swift",
        "Rules/NeverUseImplicitlyUnwrappedOptionals.swift",
        "Rules/NoAccessLevelOnExtensionDeclaration.swift",
        "Rules/NoAssignmentInExpressions.swift",
        "Rules/NoBlockComments.swift",
        "Rules/NoCasesWithOnlyFallthrough.swift",
        "Rules/NoEmptyLineOpeningClosingBraces.swift",
        "Rules/NoEmptyTrailingClosureParentheses.swift",
        "Rules/NoLabelsInCasePatterns.swift",
        "Rules/NoLeadingUnderscores.swift",
        "Rules/NoParensAroundConditions.swift",
        "Rules/NoPlaygroundLiterals.swift",
        "Rules/NoVoidReturnOnFunctionSignature.swift",
        "Rules/OmitExplicitReturns.swift",
        "Rules/OneCasePerLine.swift",
        "Rules/OneVariableDeclarationPerLine.swift",
        "Rules/OnlyOneTrailingClosureArgument.swift",
        "Rules/OrderedImports.swift",
        "Rules/ReplaceForEachWithForLoop.swift",
        "Rules/ReturnVoidInsteadOfEmptyTuple.swift",
        "Rules/TypeNamesShouldBeCapitalized.swift",
        "Rules/UseEarlyExits.swift",
        "Rules/UseExplicitNilCheckInConditions.swift",
        "Rules/UseLetInEveryBoundCaseVariable.swift",
        "Rules/UseShorthandTypeNames.swift",
        "Rules/UseSingleLinePropertyGetter.swift",
        "Rules/UseSynthesizedInitializer.swift",
        "Rules/UseTripleSlashForDocumentationComments.swift",
        "Rules/UseWhereClausesInForLoops.swift",
        "Rules/ValidateDocumentationComments.swift",
        "Utilities/FileIterator.swift",
        "Utilities/URL+isRoot.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Lint_Source_Code",
      "module_type" : "PluginTarget",
      "name" : "Lint Source Code",
      "path" : "Plugins/LintPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Lint source code for a specified target.",
          "type" : "custom",
          "verb" : "lint-source-code"
        },
        "permissions" : [
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "LintPlugin"
      ],
      "sources" : [
        "plugin.swift"
      ],
      "target_dependencies" : [
        "swift-format"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "Format_Source_Code",
      "module_type" : "PluginTarget",
      "name" : "Format Source Code",
      "path" : "Plugins/FormatPlugin",
      "plugin_capability" : {
        "intent" : {
          "type" : "sourceCodeFormatting"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "This command formats the Swift source files",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "FormatPlugin"
      ],
      "sources" : [
        "plugin.swift"
      ],
      "target_dependencies" : [
        "swift-format"
      ],
      "type" : "plugin"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/swiftlang/swift-format/main
Repository:               swiftlang/swift-format
Swift version used:       6.1
Target:                   SwiftFormat
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'SwiftFormat'...
Finished extracting symbol information for 'SwiftFormat'. (17.27s)
Building documentation for 'SwiftFormat'...
Finished building documentation for 'SwiftFormat' (0.17s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-format/main
Updating https://github.com/swiftlang/swift-syntax.git
Updated https://github.com/swiftlang/swift-syntax.git (0.85s)
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updating https://github.com/apple/swift-markdown.git
Updating https://github.com/swiftlang/swift-cmark.git
Updating https://github.com/apple/swift-argument-parser.git
Updated https://github.com/apple/swift-markdown.git (0.63s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.65s)
Updated https://github.com/apple/swift-argument-parser.git (0.77s)
Updated https://github.com/swiftlang/swift-cmark.git (0.77s)
Computing version for https://github.com/apple/swift-markdown.git
Computed https://github.com/apple/swift-markdown.git at 0.6.0 (2.01s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.5.1 (0.48s)
Computing version for https://github.com/swiftlang/swift-cmark.git
Computed https://github.com/swiftlang/swift-cmark.git at 0.6.0 (0.59s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.4 (0.60s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.86s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.52s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.4
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/57] Compiling SymbolKit Mixin+Equals.swift
[11/57] Compiling SymbolKit Mixin+Hash.swift
[12/57] Compiling SymbolKit Mixin.swift
[13/57] Compiling SymbolKit LineList.swift
[14/57] Compiling SymbolKit Position.swift
[15/57] Compiling SymbolKit Identifier.swift
[16/57] Compiling SymbolKit KindIdentifier.swift
[17/57] Compiling SymbolKit Location.swift
[18/57] Compiling SymbolKit Mutability.swift
[19/57] Emitting module SymbolKit
[20/57] Compiling SymbolKit SemanticVersion.swift
[21/57] Compiling SymbolKit AccessControl.swift
[22/57] Compiling SymbolKit Availability.swift
[23/57] Compiling SymbolKit AvailabilityItem.swift
[24/57] Compiling SymbolKit Domain.swift
[25/57] Compiling SymbolKit DeclarationFragments.swift
[26/57] Compiling SymbolKit Fragment.swift
[27/57] Compiling SymbolKit FragmentKind.swift
[28/57] Compiling SymbolKit FunctionParameter.swift
[29/57] Compiling SymbolKit FunctionSignature.swift
[30/57] Compiling SymbolKit Names.swift
[31/57] Compiling SymbolKit SPI.swift
[32/57] Compiling SymbolKit Snippet.swift
[33/57] Compiling SymbolKit Extension.swift
[34/57] Compiling SymbolKit SourceRange.swift
[35/57] Compiling SymbolKit Metadata.swift
[36/57] Compiling SymbolKit Module.swift
[37/57] Compiling SymbolKit OperatingSystem.swift
[38/57] Compiling SymbolKit Platform.swift
[39/57] Compiling SymbolKit Symbol.swift
[40/57] Compiling SymbolKit SymbolKind.swift
[41/57] Compiling SymbolKit SymbolGraph.swift
[42/57] Compiling SymbolKit GraphCollector.swift
[43/57] Compiling SymbolKit Relationship.swift
[44/57] Compiling SymbolKit RelationshipKind.swift
[45/57] Compiling SymbolKit SourceOrigin.swift
[46/57] Compiling SymbolKit GenericConstraints.swift
[47/57] Compiling SymbolKit Swift.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.29s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/28] Compiling SwiftSyntax600 Empty.swift
[3/77] Compiling SwiftSyntax510 Empty.swift
[4/77] Emitting module SwiftSyntax510
[5/77] Emitting module SwiftSyntax600
[6/77] Emitting module SwiftSyntax602
[7/77] Compiling SwiftSyntax602 Empty.swift
[8/77] Emitting module SwiftSyntax601
[9/77] Compiling SwiftSyntax601 Empty.swift
[10/77] Emitting module SwiftSyntax603
[11/77] Compiling SwiftSyntax603 Empty.swift
[12/77] Emitting module SwiftSyntax509
[13/77] Compiling SwiftSyntax509 Empty.swift
[14/77] Compiling Markdown DoxygenParameter.swift
[15/77] Compiling Markdown DoxygenReturns.swift
[16/77] Compiling Markdown ListItem.swift
[17/77] Compiling Markdown OrderedList.swift
[18/77] Compiling Markdown UnorderedList.swift
[19/77] Compiling Markdown Paragraph.swift
[20/77] Compiling Markdown CodeBlock.swift
[21/77] Compiling Markdown ParseOptions.swift
[22/77] Compiling Markdown RangeAdjuster.swift
[23/77] Compiling Markdown RangerTracker.swift
[24/77] Compiling Markdown MarkupRewriter.swift
[25/77] Compiling Markdown BasicBlockContainer.swift
[26/77] Compiling Markdown BasicInlineContainer.swift
[27/77] Compiling Markdown BlockContainer.swift
[28/83] Compiling Markdown HTMLBlock.swift
[29/83] Compiling Markdown Heading.swift
[30/83] Compiling Markdown ThematicBreak.swift
[31/83] Compiling Markdown Table.swift
[32/83] Compiling Markdown TableBody.swift
[33/83] Compiling Markdown TableCell.swift
[34/83] Compiling Markdown TableCellContainer.swift
[35/83] Compiling Markdown TableHead.swift
[36/83] Compiling Markdown TableRow.swift
[37/83] Compiling Markdown Replacement.swift
[38/83] Compiling Markdown SourceLocation.swift
[39/83] Compiling Markdown Emphasis.swift
[40/83] Compiling Markdown Image.swift
[41/83] Compiling Markdown InlineAttributes.swift
[42/83] Compiling Markdown BlockMarkup.swift
[43/83] Compiling Markdown InlineContainer.swift
[44/83] Compiling Markdown InlineMarkup.swift
[45/83] Compiling Markdown ListItemContainer.swift
[46/83] Compiling Markdown AtomicCounter.swift
[47/83] Compiling Markdown CharacterExtensions.swift
[48/83] Compiling Markdown CollectionExtensions.swift
[49/147] Emitting module Markdown
[50/147] Compiling SwiftSyntax AbsolutePosition.swift
[51/147] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[52/147] Compiling SwiftSyntax ArenaAllocatedBuffer.swift
[53/147] Compiling SwiftSyntax Assert.swift
[54/147] Compiling SwiftSyntax BumpPtrAllocator.swift
[55/147] Compiling SwiftSyntax CommonAncestor.swift
[56/147] Compiling SwiftSyntax Convenience.swift
[57/147] Compiling SwiftSyntax CustomTraits.swift
[58/147] Compiling SwiftSyntax EditorPlaceholder.swift
[59/147] Compiling SwiftSyntax Identifier.swift
[60/147] Compiling SwiftSyntax MemoryLayout.swift
[61/147] Compiling SwiftSyntax MissingNodeInitializers.swift
[62/147] Compiling SwiftSyntax RawSyntax.swift
[63/147] Compiling SwiftSyntax RawSyntaxArena.swift
[64/154] Compiling SwiftSyntax SyntaxNodesD.swift
[65/154] Compiling SwiftSyntax SyntaxNodesEF.swift
[66/154] Compiling SwiftSyntax SyntaxNodesGHI.swift
[67/154] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[68/154] Compiling SwiftSyntax SyntaxNodesOP.swift
[69/154] Compiling SwiftSyntax SyntaxNodesQRS.swift
[77/154] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[78/154] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[79/154] Compiling SwiftSyntax RawSyntaxTokenView.swift
[80/154] Compiling SwiftSyntax SourceEdit.swift
[81/154] Compiling SwiftSyntax SourceLength.swift
[82/154] Compiling SwiftSyntax SourceLocation.swift
[83/154] Compiling SwiftSyntax SourcePresence.swift
[84/154] Compiling SwiftSyntax Tokens.swift
[85/154] Compiling SwiftSyntax TriviaPieces.swift
[86/154] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[87/154] Compiling SwiftSyntax RawSyntaxNodesC.swift
[88/154] Compiling SwiftSyntax RawSyntaxNodesD.swift
[89/154] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[90/154] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[105/154] Emitting module SwiftSyntax
[119/154] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[120/154] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[121/154] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[122/154] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[123/154] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[124/154] Compiling SwiftSyntax RawSyntaxValidation.swift
[125/154] Compiling SwiftSyntax SyntaxNodesAB.swift
[126/154] Compiling SwiftSyntax SyntaxNodesC.swift
[127/154] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[128/154] Compiling SwiftSyntax Syntax.swift
[129/154] Compiling SwiftSyntax SyntaxChildren.swift
[130/154] Compiling SwiftSyntax SyntaxCollection.swift
[131/154] Compiling SwiftSyntax SyntaxHashable.swift
[132/154] Compiling SwiftSyntax SyntaxIdentifier.swift
[133/154] Compiling SwiftSyntax SyntaxNodeStructure.swift
[134/154] Compiling SwiftSyntax SyntaxProtocol.swift
[135/154] Compiling SwiftSyntax SyntaxText.swift
[136/154] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[137/154] Compiling SwiftSyntax TokenDiagnostic.swift
[138/154] Compiling SwiftSyntax TokenSequence.swift
[139/154] Compiling SwiftSyntax TokenSyntax.swift
[140/154] Compiling SwiftSyntax Trivia.swift
[141/154] Compiling SwiftSyntax SyntaxCollections.swift
[142/154] Compiling SwiftSyntax SyntaxEnum.swift
[143/154] Compiling SwiftSyntax SyntaxKind.swift
[144/154] Compiling SwiftSyntax SyntaxRewriter.swift
[145/154] Compiling SwiftSyntax SyntaxTraits.swift
[146/154] Compiling SwiftSyntax SyntaxVisitor.swift
[147/154] Compiling SwiftSyntax TokenKind.swift
[148/154] Compiling SwiftSyntax Utils.swift
[149/154] Compiling SwiftSyntax ChildNameForKeyPath.swift
[150/154] Compiling SwiftSyntax Keyword.swift
[151/154] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[152/154] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[153/154] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[154/154] Compiling SwiftSyntax SyntaxBaseNodes.swift
[155/214] Compiling SwiftDiagnostics Message.swift
[156/215] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[157/215] Compiling SwiftDiagnostics Convenience.swift
[158/215] Compiling SwiftDiagnostics Note.swift
[159/215] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[160/215] Compiling SwiftBasicFormat Syntax+Extensions.swift
[161/215] Compiling SwiftBasicFormat Indenter.swift
[162/215] Compiling SwiftDiagnostics FixIt.swift
[163/215] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[164/215] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[165/215] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[166/215] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[167/215] Emitting module SwiftDiagnostics
[168/215] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[169/215] Compiling SwiftDiagnostics Diagnostic.swift
[170/215] Compiling SwiftBasicFormat InferIndentation.swift
[171/215] Emitting module SwiftBasicFormat
[172/215] Compiling SwiftBasicFormat BasicFormat.swift
[173/215] Compiling SwiftParser StringLiterals.swift
[174/215] Compiling SwiftParser SwiftParserCompatibility.swift
[175/215] Compiling SwiftParser SwiftVersion.swift
[176/215] Compiling SwiftParser SyntaxUtils.swift
[177/219] Compiling SwiftParser Patterns.swift
[178/219] Compiling SwiftParser Recovery.swift
[179/219] Compiling SwiftParser Specifiers.swift
[180/219] Compiling SwiftParser Statements.swift
[181/219] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[182/219] Compiling SwiftParser TopLevel.swift
[183/219] Compiling SwiftParser TriviaParser.swift
[184/219] Compiling SwiftParser Types.swift
[185/219] Compiling SwiftParser ExperimentalFeatures.swift
[186/219] Compiling SwiftParser Attributes.swift
[187/219] Compiling SwiftParser Availability.swift
[188/219] Compiling SwiftParser CharacterInfo.swift
[189/219] Compiling SwiftParser CollectionNodes+Parsable.swift
[190/219] Compiling SwiftParser CompilerFiles.swift
[191/219] Compiling SwiftParser RegexLiteralLexer.swift
[192/219] Compiling SwiftParser UnicodeScalarExtensions.swift
[193/219] Compiling SwiftParser Lookahead.swift
[194/219] Compiling SwiftParser LoopProgressCondition.swift
[195/219] Compiling SwiftParser Modifiers.swift
[196/219] Compiling SwiftParser IsValidIdentifier.swift
[197/219] Compiling SwiftParser Cursor.swift
[198/219] Compiling SwiftParser Lexeme.swift
[199/219] Compiling SwiftParser LexemeSequence.swift
[200/219] Compiling SwiftParser Lexer.swift
[201/219] Emitting module SwiftParser
[202/219] Compiling SwiftParser Names.swift
[203/219] Compiling SwiftParser Nominals.swift
[204/219] Compiling SwiftParser Parameters.swift
[205/219] Compiling SwiftParser ParseSourceFile.swift
[206/219] Compiling SwiftParser Parser.swift
[207/219] Compiling SwiftParser TokenConsumer.swift
[208/219] Compiling SwiftParser TokenPrecedence.swift
[209/219] Compiling SwiftParser TokenSpec.swift
[210/219] Compiling SwiftParser TokenSpecSet.swift
[211/219] Compiling SwiftParser Declarations.swift
[212/219] Compiling SwiftParser Directives.swift
[213/219] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[214/219] Compiling SwiftParser Expressions.swift
[215/219] Compiling SwiftParser IncrementalParseTransition.swift
[216/219] Compiling SwiftParser IsLexerClassified.swift
[217/219] Compiling SwiftParser LayoutNodes+Parsable.swift
[218/219] Compiling SwiftParser Parser+TokenSpecSet.swift
[219/219] Compiling SwiftParser TokenSpecStaticMembers.swift
[220/242] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[221/243] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[222/243] Compiling SwiftOperators PrecedenceGraph.swift
[223/243] Compiling SwiftOperators PrecedenceGroup.swift
[224/243] Compiling SwiftOperators OperatorTable.swift
[225/243] Compiling SwiftOperators OperatorTable+Defaults.swift
[226/243] Compiling SwiftOperators OperatorError.swift
[227/243] Compiling SwiftOperators OperatorTable+Semantics.swift
[228/243] Emitting module SwiftOperators
[229/243] Compiling SwiftOperators Operator.swift
[230/243] Compiling SwiftOperators OperatorTable+Folding.swift
[231/243] Compiling SwiftOperators OperatorError+Diagnostics.swift
[232/244] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[233/244] Compiling SwiftParserDiagnostics Utils.swift
[234/244] Compiling SwiftParserDiagnostics PresenceUtils.swift
[235/244] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[236/244] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[237/244] Compiling SwiftOperators SyntaxSynthesis.swift
[238/244] Compiling SwiftParserDiagnostics MissingNodesError.swift
[239/244] Compiling SwiftParserDiagnostics MissingTokenError.swift
[240/244] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[241/244] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[242/244] Emitting module SwiftParserDiagnostics
[243/244] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[244/244] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[245/259] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[246/259] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[247/259] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[248/259] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[249/259] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[250/259] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[251/260] Compiling SwiftSyntaxBuilder Indenter.swift
[252/260] Compiling SwiftSyntaxBuilder ListBuilder.swift
[253/260] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[254/260] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[255/260] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[256/260] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[257/260] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[258/260] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[259/260] Emitting module SwiftSyntaxBuilder
[260/260] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[261/345] Compiling SwiftFormat RuleState.swift
[262/345] Compiling SwiftFormat SyntaxFormatRule.swift
[263/345] Compiling SwiftFormat SyntaxLintRule.swift
[264/345] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[265/345] Compiling SwiftFormat SyntaxTraits.swift
[266/345] Compiling SwiftFormat Trivia+Convenience.swift
[267/345] Compiling SwiftFormat WithAttributesSyntax+Convenience.swift
[268/345] Compiling SwiftFormat WithSemicolonSyntax.swift
[269/345] Compiling SwiftFormat Comment.swift
[270/354] Emitting module SwiftFormat
[271/354] Compiling SwiftFormat Configuration+Default.swift
[272/354] Compiling SwiftFormat Configuration+Dump.swift
[273/354] Compiling SwiftFormat Configuration.swift
[274/354] Compiling SwiftFormat DebugOptions.swift
[275/354] Compiling SwiftFormat Finding.swift
[276/354] Compiling SwiftFormat FindingCategorizing.swift
[277/354] Compiling SwiftFormat Indent.swift
[278/354] Compiling SwiftFormat Selection.swift
[279/354] Compiling SwiftFormat SwiftFormatError.swift
[280/354] Compiling SwiftFormat SwiftFormatter.swift
[281/354] Compiling SwiftFormat SwiftLinter.swift
[282/354] Compiling SwiftFormat Context.swift
[283/354] Compiling SwiftFormat DocumentationComment.swift
[284/354] Compiling SwiftFormat DocumentationCommentText.swift
[285/354] Compiling SwiftFormat Finding+Convenience.swift
[286/354] Compiling SwiftFormat FindingEmitter.swift
[287/354] Compiling SwiftFormat FormatPipeline.swift
[288/354] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[289/354] Compiling SwiftFormat ImportsXCTestVisitor.swift
[290/354] Compiling SwiftFormat LazySplitSequence.swift
[291/354] Compiling SwiftFormat OneCasePerLine.swift
[292/354] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[293/354] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[294/354] Compiling SwiftFormat OrderedImports.swift
[295/354] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[296/354] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[297/354] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[298/354] Compiling SwiftFormat UseEarlyExits.swift
[299/354] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
[300/354] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
[301/354] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[302/354] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[303/354] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[304/354] Compiling SwiftFormat AvoidRetroactiveConformances.swift
[305/354] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[306/354] Compiling SwiftFormat DoNotUseSemicolons.swift
[307/354] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[308/354] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[309/354] Compiling SwiftFormat FullyIndirectEnum.swift
[310/354] Compiling SwiftFormat GroupNumericLiterals.swift
[311/354] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[312/354] Compiling SwiftFormat NeverForceUnwrap.swift
[313/354] Compiling SwiftFormat NeverUseForceTry.swift
[314/354] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[315/354] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[316/354] Compiling SwiftFormat NoAssignmentInExpressions.swift
[317/354] Compiling SwiftFormat NoBlockComments.swift
[318/354] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[319/354] Compiling SwiftFormat UseShorthandTypeNames.swift
[320/354] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[321/354] Compiling SwiftFormat UseSynthesizedInitializer.swift
[322/354] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[323/354] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[324/354] Compiling SwiftFormat ValidateDocumentationComments.swift
[325/354] Compiling SwiftFormat FileIterator.swift
[326/354] Compiling SwiftFormat URL+isRoot.swift
[327/354] Compiling SwiftFormat LintPipeline.swift
[328/354] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[329/354] Compiling SwiftFormat Parsing.swift
[330/354] Compiling SwiftFormat Pipelines+Generated.swift
[331/354] Compiling SwiftFormat RememberingIterator.swift
[332/354] Compiling SwiftFormat Rule.swift
[333/354] Compiling SwiftFormat RuleBasedFindingCategory.swift
[334/354] Compiling SwiftFormat RuleMask.swift
[335/354] Compiling SwiftFormat RuleNameCache+Generated.swift
[336/354] Compiling SwiftFormat RuleRegistry+Generated.swift
[337/354] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[338/354] Compiling SwiftFormat NoEmptyLineOpeningClosingBraces.swift
[339/354] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[340/354] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[341/354] Compiling SwiftFormat NoLeadingUnderscores.swift
[342/354] Compiling SwiftFormat NoParensAroundConditions.swift
[343/354] Compiling SwiftFormat NoPlaygroundLiterals.swift
[344/354] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[345/354] Compiling SwiftFormat OmitExplicitReturns.swift
[346/354] Compiling SwiftFormat Indent+Length.swift
[347/354] Compiling SwiftFormat PrettyPrint.swift
[348/354] Compiling SwiftFormat PrettyPrintBuffer.swift
[349/354] Compiling SwiftFormat PrettyPrintFindingCategory.swift
[350/354] Compiling SwiftFormat Token.swift
[351/354] Compiling SwiftFormat TokenStreamCreator.swift
[352/354] Compiling SwiftFormat Verbatim.swift
[353/354] Compiling SwiftFormat WhitespaceFindingCategory.swift
[354/354] Compiling SwiftFormat WhitespaceLinter.swift
Build of target: 'SwiftFormat' complete! (15.16s)
     304
3	/Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-format/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/swiftlang/swift-format/main
File count: 304
Doc size:   3.0MB
Preparing doc bundle ...
Uploading prod-swiftlang-swift-format-main-cee1e267.zip to s3://spi-docs-inbox/prod-swiftlang-swift-format-main-cee1e267.zip
Copying... [11%]
Copying... [21%]
Copying... [32%]
Copying... [42%]
Copying... [53%]
Copying... [63%]
Copying... [74%]
Copying... [84%]
Copying... [95%]
Copying... [100%]
Done.