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 602.0.0-prerelease-2025-05-29 (384ba2), with Swift 6.1 for macOS (SPM) on 30 May 2025 15:43:53 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

/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' 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
452 |
453 | extension Finding.Message {
454 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' 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 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 |   fileprivate static func indentationError(
/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/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' 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
496 |   }
497 |
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' 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 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/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/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' 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
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' 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 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 |   fileprivate static func addLinesError(_ lines: Int) -> 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/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' 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
505 |   }
506 |
507 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' 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 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/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/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' 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
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' 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 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/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/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' 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
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' 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 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/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/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' 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
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' 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 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/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/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' 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
452 |
453 | extension Finding.Message {
454 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' 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 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 |   fileprivate static func indentationError(
/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/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' 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
496 |   }
497 |
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' 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 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/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/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' 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
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' 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 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 |   fileprivate static func addLinesError(_ lines: Int) -> 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/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' 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
505 |   }
506 |
507 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' 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 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/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/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' 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
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' 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 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/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/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' 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
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' 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 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/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/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' 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
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' 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 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/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/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' 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
452 |
453 | extension Finding.Message {
454 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' 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 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 |   fileprivate static func indentationError(
/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/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' 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
496 |   }
497 |
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' 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 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/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/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' 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
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' 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 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 |   fileprivate static func addLinesError(_ lines: Int) -> 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/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' 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
505 |   }
506 |
507 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' 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 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/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/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' 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
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' 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 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/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/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' 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
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' 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 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/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/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' 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
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' 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 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/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/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' 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
452 |
453 | extension Finding.Message {
454 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' 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 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 |   fileprivate static func indentationError(
/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/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' 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
496 |   }
497 |
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' 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 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/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/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' 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
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' 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 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 |   fileprivate static func addLinesError(_ lines: Int) -> 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/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' 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
505 |   }
506 |
507 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' 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 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/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/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' 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
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' 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 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/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/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' 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
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' 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 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/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/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' 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
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' 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 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/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/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' 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
452 |
453 | extension Finding.Message {
454 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' 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 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 |   fileprivate static func indentationError(
/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/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' 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
496 |   }
497 |
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' 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 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/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/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' 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
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' 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 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 |   fileprivate static func addLinesError(_ lines: Int) -> 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/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' 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
505 |   }
506 |
507 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' 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 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/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/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' 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
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' 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 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/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/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' 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
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' 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 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/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/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' 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
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' 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 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/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/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' 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
452 |
453 | extension Finding.Message {
454 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' 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 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 |   fileprivate static func indentationError(
/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/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' 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
496 |   }
497 |
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' 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 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/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/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' 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
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' 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 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 |   fileprivate static func addLinesError(_ lines: Int) -> 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/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' 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
505 |   }
506 |
507 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' 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 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/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/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' 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
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' 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 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/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/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' 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
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' 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 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/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/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' 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
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' 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 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/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/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' 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
452 |
453 | extension Finding.Message {
454 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' 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 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 |   fileprivate static func indentationError(
/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/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' 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
496 |   }
497 |
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' 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 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/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/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' 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
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' 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 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 |   fileprivate static func addLinesError(_ lines: Int) -> 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/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' 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
505 |   }
506 |
507 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' 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 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/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/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' 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
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' 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 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/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/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' 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
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' 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 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/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/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' 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
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' 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 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/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/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' 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
452 |
453 | extension Finding.Message {
454 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' 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 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 |   fileprivate static func indentationError(
/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/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' 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
496 |   }
497 |
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' 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 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/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/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' 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
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' 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 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 |   fileprivate static func addLinesError(_ lines: Int) -> 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/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' 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
505 |   }
506 |
507 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' 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 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/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/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' 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
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' 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 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/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/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' 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
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' 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 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/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/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' 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
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' 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 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/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/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:454:26: warning: static property 'trailingWhitespaceError' 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
452 |
453 | extension Finding.Message {
454 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' 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 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 |
456 |   fileprivate static func indentationError(
/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/PrettyPrint/WhitespaceLinter.swift:498:26: warning: static property 'spacingCharError' 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
496 |   }
497 |
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' 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 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/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/PrettyPrint/WhitespaceLinter.swift:500:26: warning: static property 'removeLineError' 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
498 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
499 |
500 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' 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 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 |
502 |   fileprivate static func addLinesError(_ lines: Int) -> 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/PrettyPrint/WhitespaceLinter.swift:507:26: warning: static property 'lineLengthError' 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
505 |   }
506 |
507 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' 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 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
508 | }
509 |
/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 |   {
[910/969] Compiling swift_format TTY.swift
[911/970] Compiling generate_swift_format Syntax+Convenience.swift
[912/970] Compiling generate_swift_format main.swift
[913/970] Compiling swift_format TTY.swift
[914/971] Compiling generate_swift_format RuleDocumentationGenerator.swift
[915/971] Compiling generate_swift_format RuleRegistryGenerator.swift
[916/971] Compiling generate_swift_format RuleNameCacheGenerator.swift
[917/971] Compiling swift_format Diagnostic.swift
[918/971] Compiling swift_format DiagnosticsEngine.swift
[919/971] Compiling swift_format FileHandleTextOutputStream.swift
[920/971] Compiling swift_format StderrDiagnosticPrinter.swift
[921/971] Compiling generate_swift_format PipelineGenerator.swift
[922/971] Emitting module generate_swift_format
[923/971] Compiling generate_swift_format RuleCollector.swift
[924/971] Compiling generate_swift_format FileGenerator.swift
[924/971] Write Objects.LinkFileList
[926/971] Compiling swift_format VersionOptions.swift
[930/971] 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",
[931/971] 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",
[932/971] Compiling swift_format DumpConfiguration.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 {
[933/971] Compiling swift_format Format.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 {
[934/971] Compiling swift_format PrintVersion.swift
[935/971] Compiling swift_format ConfigurationOptions.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",
/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",
[938/971] Compiling swift_format Frontend.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."
[939/971] Compiling swift_format LintFrontend.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."
[940/971] Compiling swift_format ConfigurationLoader.swift
[941/971] Compiling swift_format FormatFrontend.swift
[942/971] 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",
[943/971] Compiling swift_format Lint.swift
[944/971] 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."
/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/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 {
/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 {
/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/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/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."
[957/971] 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",
[957/971] Write Objects.LinkFileList
[959/971] Linking generate-swift-format
[960/971] Applying generate-swift-format
[961/971] Linking swift-format-tool
[962/971] Linking swift-format
[963/971] Applying swift-format-tool
[964/971] Applying swift-format
[966/971] Compiling _SwiftFormatTestSupport MarkedText.swift
[967/971] Compiling _SwiftFormatTestSupport Parsing.swift
[968/971] Compiling _SwiftFormatTestSupport Configuration+Testing.swift
[969/971] Compiling _SwiftFormatTestSupport FindingSpec.swift
[970/971] Emitting module _SwiftFormatTestSupport
[971/971] Compiling _SwiftFormatTestSupport DiagnosingTestCase.swift
Build complete! (46.36s)
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" : {
        "range" : [
          {
            "lower_bound" : "602.0.0-prerelease-2025-05-29",
            "upper_bound" : "603.0.0"
          }
        ]
      },
      "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/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/602.0.0-prerelease-2025-05-29
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'. (16.15s)
Building documentation for 'SwiftFormat'...
Finished building documentation for 'SwiftFormat' (0.15s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-format/602.0.0-prerelease-2025-05-29
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updating https://github.com/apple/swift-argument-parser.git
Updating https://github.com/swiftlang/swift-cmark.git
Updating https://github.com/swiftlang/swift-syntax.git
Updating https://github.com/apple/swift-markdown.git
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.52s)
Updated https://github.com/apple/swift-argument-parser.git (0.82s)
Updated https://github.com/apple/swift-markdown.git (0.97s)
Updated https://github.com/swiftlang/swift-cmark.git (0.97s)
Updated https://github.com/swiftlang/swift-syntax.git (0.97s)
Computing version for https://github.com/apple/swift-markdown.git
Computed https://github.com/apple/swift-markdown.git at 0.6.0 (2.06s)
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.46s)
Computing version for https://github.com/swiftlang/swift-cmark.git
Computed https://github.com/swiftlang/swift-cmark.git at 0.6.0 (0.55s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (0.54s)
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.46s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 602.0.0-prerelease-2025-05-29 (0.59s)
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
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.3
Building for debugging...
[0/7] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit DeclarationFragments.swift
[7/53] Compiling SymbolKit Fragment.swift
[8/53] Compiling SymbolKit FragmentKind.swift
[9/53] Compiling SymbolKit FunctionParameter.swift
[10/53] Compiling SymbolKit FunctionSignature.swift
[11/57] Emitting module SymbolKit
[12/57] Compiling SymbolKit SemanticVersion.swift
[13/57] Compiling SymbolKit AccessControl.swift
[14/57] Compiling SymbolKit Availability.swift
[15/57] Compiling SymbolKit AvailabilityItem.swift
[16/57] Compiling SymbolKit Domain.swift
[17/57] Compiling SymbolKit Identifier.swift
[18/57] Compiling SymbolKit KindIdentifier.swift
[19/57] Compiling SymbolKit Location.swift
[20/57] Compiling SymbolKit Mutability.swift
[21/57] Compiling SymbolKit Mixin+Equals.swift
[22/57] Compiling SymbolKit Mixin+Hash.swift
[23/57] Compiling SymbolKit Mixin.swift
[24/57] Compiling SymbolKit LineList.swift
[25/57] Compiling SymbolKit Position.swift
[26/57] Compiling SymbolKit Names.swift
[27/57] Compiling SymbolKit SPI.swift
[28/57] Compiling SymbolKit Snippet.swift
[29/57] Compiling SymbolKit Extension.swift
[30/57] Compiling SymbolKit SourceRange.swift
[31/57] Compiling SymbolKit Metadata.swift
[32/57] Compiling SymbolKit Module.swift
[33/57] Compiling SymbolKit OperatingSystem.swift
[34/57] Compiling SymbolKit Platform.swift
[35/57] Compiling SymbolKit Relationship.swift
[36/57] Compiling SymbolKit RelationshipKind.swift
[37/57] Compiling SymbolKit SourceOrigin.swift
[38/57] Compiling SymbolKit GenericConstraints.swift
[39/57] Compiling SymbolKit Swift.swift
[40/57] Compiling SymbolKit Symbol.swift
[41/57] Compiling SymbolKit SymbolKind.swift
[42/57] Compiling SymbolKit SymbolGraph.swift
[43/57] Compiling SymbolKit GraphCollector.swift
[44/57] Compiling SymbolKit GenericConstraint.swift
[45/57] Compiling SymbolKit GenericParameter.swift
[46/57] Compiling SymbolKit Generics.swift
[47/57] Compiling SymbolKit Namespace.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] Compiling Snippets Snippet.swift
[54/57] Emitting module Snippets
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.70s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/12] Compiling SwiftSyntax509 Empty.swift
[3/12] Compiling SwiftSyntax510 Empty.swift
[4/20] Emitting module SwiftSyntax510
[5/22] Compiling SwiftSyntax601 Empty.swift
[6/22] Emitting module SwiftSyntax509
[7/24] Emitting module SwiftSyntax600
[8/24] Compiling SwiftSyntax600 Empty.swift
[9/24] Emitting module SwiftSyntax601
[10/24] Compiling SwiftSyntax602 Empty.swift
[11/24] Emitting module SwiftSyntax602
[12/75] Compiling Markdown Link.swift
[13/75] Compiling Markdown Strikethrough.swift
[14/75] Compiling Markdown Strong.swift
[15/75] Compiling Markdown CustomInline.swift
[16/75] Compiling Markdown InlineCode.swift
[17/75] Compiling Markdown InlineHTML.swift
[18/75] Compiling Markdown LineBreak.swift
[19/81] Compiling Markdown BlockMarkup.swift
[20/81] Compiling Markdown InlineContainer.swift
[21/81] Compiling Markdown InlineMarkup.swift
[22/81] Compiling Markdown ListItemContainer.swift
[23/81] Compiling Markdown AtomicCounter.swift
[24/81] Compiling Markdown CharacterExtensions.swift
[25/81] Compiling Markdown CollectionExtensions.swift
[26/81] Compiling Markdown ParseOptions.swift
[27/81] Compiling Markdown RangeAdjuster.swift
[28/81] Compiling Markdown RangerTracker.swift
[29/81] Compiling Markdown MarkupRewriter.swift
[30/81] Compiling Markdown BasicBlockContainer.swift
[31/81] Compiling Markdown BasicInlineContainer.swift
[32/81] Compiling Markdown BlockContainer.swift
[33/81] Compiling Markdown TableHead.swift
[34/81] Compiling Markdown TableRow.swift
[35/81] Compiling Markdown Replacement.swift
[36/81] Compiling Markdown SourceLocation.swift
[37/81] Compiling Markdown Emphasis.swift
[38/81] Compiling Markdown Image.swift
[39/81] Compiling Markdown InlineAttributes.swift
[40/81] Compiling Markdown DoxygenParameter.swift
[41/81] Compiling Markdown DoxygenReturns.swift
[42/81] Compiling Markdown ListItem.swift
[43/81] Compiling Markdown OrderedList.swift
[44/81] Compiling Markdown UnorderedList.swift
[45/81] Compiling Markdown Paragraph.swift
[46/81] Compiling Markdown CodeBlock.swift
[47/145] Emitting module Markdown
[48/145] Compiling SwiftSyntax AbsolutePosition.swift
[49/145] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[50/145] Compiling SwiftSyntax ArenaAllocatedBuffer.swift
[51/145] Compiling SwiftSyntax Assert.swift
[52/145] Compiling SwiftSyntax BumpPtrAllocator.swift
[53/145] Compiling SwiftSyntax CommonAncestor.swift
[54/145] Compiling SwiftSyntax Convenience.swift
[62/152] Compiling SwiftSyntax CustomTraits.swift
[63/152] Compiling SwiftSyntax EditorPlaceholder.swift
[64/152] Compiling SwiftSyntax Identifier.swift
[65/152] Compiling SwiftSyntax MemoryLayout.swift
[66/152] Compiling SwiftSyntax MissingNodeInitializers.swift
[67/152] Compiling SwiftSyntax RawSyntax.swift
[68/152] Compiling SwiftSyntax RawSyntaxArena.swift
[69/152] Compiling SwiftSyntax SyntaxProtocol.swift
[70/152] Compiling SwiftSyntax SyntaxText.swift
[71/152] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[72/152] Compiling SwiftSyntax TokenDiagnostic.swift
[73/152] Compiling SwiftSyntax TokenSequence.swift
[74/152] Compiling SwiftSyntax TokenSyntax.swift
[75/152] Compiling SwiftSyntax Trivia.swift
[76/152] Compiling SwiftSyntax SyntaxNodesD.swift
[77/152] Compiling SwiftSyntax SyntaxNodesEF.swift
[78/152] Compiling SwiftSyntax SyntaxNodesGHI.swift
[79/152] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[80/152] Compiling SwiftSyntax SyntaxNodesOP.swift
[81/152] Compiling SwiftSyntax SyntaxNodesQRS.swift
[82/152] Compiling SwiftSyntax SyntaxCollections.swift
[83/152] Compiling SwiftSyntax SyntaxEnum.swift
[84/152] Compiling SwiftSyntax SyntaxKind.swift
[85/152] Compiling SwiftSyntax SyntaxRewriter.swift
[86/152] Compiling SwiftSyntax SyntaxTraits.swift
[87/152] Compiling SwiftSyntax SyntaxVisitor.swift
[88/152] Compiling SwiftSyntax TokenKind.swift
[89/152] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[90/152] Compiling SwiftSyntax Syntax.swift
[91/152] Compiling SwiftSyntax SyntaxChildren.swift
[92/152] Compiling SwiftSyntax SyntaxCollection.swift
[93/152] Compiling SwiftSyntax SyntaxHashable.swift
[94/152] Compiling SwiftSyntax SyntaxIdentifier.swift
[95/152] Compiling SwiftSyntax SyntaxNodeStructure.swift
[96/152] Compiling SwiftSyntax Tokens.swift
[97/152] Compiling SwiftSyntax TriviaPieces.swift
[98/152] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[99/152] Compiling SwiftSyntax RawSyntaxNodesC.swift
[100/152] Compiling SwiftSyntax RawSyntaxNodesD.swift
[101/152] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[102/152] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[110/152] Emitting module SwiftSyntax
[124/152] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[125/152] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[126/152] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[127/152] Compiling SwiftSyntax RawSyntaxTokenView.swift
[128/152] Compiling SwiftSyntax SourceEdit.swift
[129/152] Compiling SwiftSyntax SourceLength.swift
[130/152] Compiling SwiftSyntax SourceLocation.swift
[131/152] Compiling SwiftSyntax SourcePresence.swift
[132/152] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[133/152] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[134/152] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[135/152] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[136/152] Compiling SwiftSyntax RawSyntaxValidation.swift
[137/152] Compiling SwiftSyntax SyntaxNodesAB.swift
[138/152] Compiling SwiftSyntax SyntaxNodesC.swift
[146/152] Compiling SwiftSyntax Utils.swift
[147/152] Compiling SwiftSyntax ChildNameForKeyPath.swift
[148/152] Compiling SwiftSyntax Keyword.swift
[149/152] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[150/152] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[151/152] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[152/152] Compiling SwiftSyntax SyntaxBaseNodes.swift
[153/212] Compiling SwiftDiagnostics Message.swift
[154/213] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[155/213] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[156/213] Compiling SwiftDiagnostics Convenience.swift
[157/213] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[158/213] Emitting module SwiftDiagnostics
[159/213] Compiling SwiftBasicFormat Syntax+Extensions.swift
[160/213] Compiling SwiftDiagnostics Note.swift
[161/213] Compiling SwiftBasicFormat Indenter.swift
[162/213] Compiling SwiftBasicFormat InferIndentation.swift
[163/213] Compiling SwiftDiagnostics FixIt.swift
[164/213] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[165/213] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[166/213] Compiling SwiftDiagnostics Diagnostic.swift
[167/213] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[168/213] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[169/213] Compiling SwiftBasicFormat BasicFormat.swift
[170/213] Emitting module SwiftBasicFormat
[171/213] Compiling SwiftParser TopLevel.swift
[172/213] Compiling SwiftParser TriviaParser.swift
[173/213] Compiling SwiftParser Types.swift
[174/213] Compiling SwiftParser ExperimentalFeatures.swift
[175/217] Compiling SwiftParser Names.swift
[176/217] Compiling SwiftParser Nominals.swift
[177/217] Compiling SwiftParser Parameters.swift
[178/217] Compiling SwiftParser ParseSourceFile.swift
[179/217] Compiling SwiftParser Parser.swift
[180/217] Compiling SwiftParser Patterns.swift
[181/217] Compiling SwiftParser Recovery.swift
[182/217] Compiling SwiftParser Specifiers.swift
[183/217] Compiling SwiftParser Statements.swift
[184/217] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[185/217] Compiling SwiftParser StringLiterals.swift
[186/217] Compiling SwiftParser SwiftParserCompatibility.swift
[187/217] Compiling SwiftParser SwiftVersion.swift
[188/217] Compiling SwiftParser SyntaxUtils.swift
[189/217] Compiling SwiftParser IsValidIdentifier.swift
[190/217] Compiling SwiftParser Cursor.swift
[191/217] Compiling SwiftParser Lexeme.swift
[192/217] Compiling SwiftParser LexemeSequence.swift
[193/217] Compiling SwiftParser Lexer.swift
[194/217] Emitting module SwiftParser
[195/217] Compiling SwiftParser Attributes.swift
[196/217] Compiling SwiftParser Availability.swift
[197/217] Compiling SwiftParser CharacterInfo.swift
[198/217] Compiling SwiftParser CollectionNodes+Parsable.swift
[199/217] Compiling SwiftParser CompilerFiles.swift
[200/217] Compiling SwiftParser TokenConsumer.swift
[201/217] Compiling SwiftParser TokenPrecedence.swift
[202/217] Compiling SwiftParser TokenSpec.swift
[203/217] Compiling SwiftParser TokenSpecSet.swift
[204/217] Compiling SwiftParser RegexLiteralLexer.swift
[205/217] Compiling SwiftParser UnicodeScalarExtensions.swift
[206/217] Compiling SwiftParser Lookahead.swift
[207/217] Compiling SwiftParser LoopProgressCondition.swift
[208/217] Compiling SwiftParser Modifiers.swift
[209/217] Compiling SwiftParser Declarations.swift
[210/217] Compiling SwiftParser Directives.swift
[211/217] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[212/217] Compiling SwiftParser Expressions.swift
[213/217] Compiling SwiftParser IncrementalParseTransition.swift
[214/217] Compiling SwiftParser IsLexerClassified.swift
[215/217] Compiling SwiftParser LayoutNodes+Parsable.swift
[216/217] Compiling SwiftParser Parser+TokenSpecSet.swift
[217/217] Compiling SwiftParser TokenSpecStaticMembers.swift
[218/240] Compiling SwiftOperators PrecedenceGroup.swift
[219/240] Compiling SwiftOperators PrecedenceGraph.swift
[220/241] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[221/242] Compiling SwiftOperators SyntaxSynthesis.swift
[222/242] Compiling SwiftOperators OperatorTable+Semantics.swift
[223/242] Compiling SwiftOperators OperatorTable.swift
[224/242] Compiling SwiftOperators OperatorTable+Defaults.swift
[225/242] Compiling SwiftOperators OperatorError.swift
[226/242] Compiling SwiftOperators OperatorError+Diagnostics.swift
[227/242] Emitting module SwiftOperators
[228/242] Compiling SwiftOperators OperatorTable+Folding.swift
[229/242] Compiling SwiftOperators Operator.swift
[230/242] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[231/242] Compiling SwiftParserDiagnostics PresenceUtils.swift
[232/242] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[233/242] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[234/242] Compiling SwiftParserDiagnostics Utils.swift
[235/242] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[236/242] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[237/242] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[238/242] Compiling SwiftParserDiagnostics MissingNodesError.swift
[239/242] Compiling SwiftParserDiagnostics MissingTokenError.swift
[240/242] Emitting module SwiftParserDiagnostics
[241/242] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[242/242] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[243/257] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[244/257] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[245/257] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[246/257] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[247/257] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[248/257] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[249/257] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[250/257] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[251/258] Compiling SwiftSyntaxBuilder Indenter.swift
[252/258] Compiling SwiftSyntaxBuilder ListBuilder.swift
[253/258] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[254/258] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[255/258] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[256/258] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[257/258] Emitting module SwiftSyntaxBuilder
[258/258] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[259/343] Compiling SwiftFormat Configuration+Default.swift
[260/343] Compiling SwiftFormat Configuration+Dump.swift
[261/343] Compiling SwiftFormat Configuration.swift
[262/343] Compiling SwiftFormat DebugOptions.swift
[263/343] Compiling SwiftFormat Finding.swift
[264/343] Compiling SwiftFormat FindingCategorizing.swift
[265/343] Compiling SwiftFormat Indent.swift
[266/343] Compiling SwiftFormat Selection.swift
[267/343] Compiling SwiftFormat SwiftFormatError.swift
[268/343] Compiling SwiftFormat SwiftFormatter.swift
[269/352] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[270/352] Compiling SwiftFormat NoEmptyLineOpeningClosingBraces.swift
[271/352] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[272/352] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[273/352] Compiling SwiftFormat NoLeadingUnderscores.swift
[274/352] Compiling SwiftFormat NoParensAroundConditions.swift
[275/352] Compiling SwiftFormat NoPlaygroundLiterals.swift
[276/352] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[277/352] Compiling SwiftFormat OmitExplicitReturns.swift
[278/352] Compiling SwiftFormat OneCasePerLine.swift
[279/352] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[280/352] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[281/352] Compiling SwiftFormat OrderedImports.swift
[282/352] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[283/352] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[284/352] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[285/352] Compiling SwiftFormat UseEarlyExits.swift
[286/352] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
[287/352] Compiling SwiftFormat RuleState.swift
[288/352] Compiling SwiftFormat SyntaxFormatRule.swift
[289/352] Compiling SwiftFormat SyntaxLintRule.swift
[290/352] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[291/352] Compiling SwiftFormat SyntaxTraits.swift
[292/352] Compiling SwiftFormat Trivia+Convenience.swift
[293/352] Compiling SwiftFormat WithAttributesSyntax+Convenience.swift
[294/352] Compiling SwiftFormat WithSemicolonSyntax.swift
[295/352] Compiling SwiftFormat Comment.swift
[296/352] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
[297/352] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[298/352] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[299/352] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[300/352] Compiling SwiftFormat AvoidRetroactiveConformances.swift
[301/352] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[302/352] Compiling SwiftFormat DoNotUseSemicolons.swift
[303/352] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[304/352] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[305/352] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[306/352] Compiling SwiftFormat UseShorthandTypeNames.swift
[307/352] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[308/352] Compiling SwiftFormat UseSynthesizedInitializer.swift
[309/352] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[310/352] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[311/352] Compiling SwiftFormat ValidateDocumentationComments.swift
[312/352] Compiling SwiftFormat FileIterator.swift
[313/352] Compiling SwiftFormat URL+isRoot.swift
[314/352] Emitting module SwiftFormat
[315/352] Compiling SwiftFormat LintPipeline.swift
[316/352] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[317/352] Compiling SwiftFormat Parsing.swift
[318/352] Compiling SwiftFormat Pipelines+Generated.swift
[319/352] Compiling SwiftFormat RememberingIterator.swift
[320/352] Compiling SwiftFormat Rule.swift
[321/352] Compiling SwiftFormat RuleBasedFindingCategory.swift
[322/352] Compiling SwiftFormat RuleMask.swift
[323/352] Compiling SwiftFormat RuleNameCache+Generated.swift
[324/352] Compiling SwiftFormat RuleRegistry+Generated.swift
[325/352] Compiling SwiftFormat FullyIndirectEnum.swift
[326/352] Compiling SwiftFormat GroupNumericLiterals.swift
[327/352] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[328/352] Compiling SwiftFormat NeverForceUnwrap.swift
[329/352] Compiling SwiftFormat NeverUseForceTry.swift
[330/352] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[331/352] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[332/352] Compiling SwiftFormat NoAssignmentInExpressions.swift
[333/352] Compiling SwiftFormat NoBlockComments.swift
[334/352] Compiling SwiftFormat SwiftLinter.swift
[335/352] Compiling SwiftFormat Context.swift
[336/352] Compiling SwiftFormat DocumentationComment.swift
[337/352] Compiling SwiftFormat DocumentationCommentText.swift
[338/352] Compiling SwiftFormat Finding+Convenience.swift
[339/352] Compiling SwiftFormat FindingEmitter.swift
[340/352] Compiling SwiftFormat FormatPipeline.swift
[341/352] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[342/352] Compiling SwiftFormat ImportsXCTestVisitor.swift
[343/352] Compiling SwiftFormat LazySplitSequence.swift
[344/352] Compiling SwiftFormat Indent+Length.swift
[345/352] Compiling SwiftFormat PrettyPrint.swift
[346/352] Compiling SwiftFormat PrettyPrintBuffer.swift
[347/352] Compiling SwiftFormat PrettyPrintFindingCategory.swift
[348/352] Compiling SwiftFormat Token.swift
[349/352] Compiling SwiftFormat TokenStreamCreator.swift
[350/352] Compiling SwiftFormat Verbatim.swift
[351/352] Compiling SwiftFormat WhitespaceFindingCategory.swift
[352/352] Compiling SwiftFormat WhitespaceLinter.swift
Build of target: 'SwiftFormat' complete! (14.19s)
     302
3	/Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-format/602.0.0-prerelease-2025-05-29
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/swiftlang/swift-format/602.0.0-prerelease-2025-05-29
File count: 302
Doc size:   3.0MB
Preparing doc bundle ...
Uploading prod-swiftlang-swift-format-602.0.0-prerelease-2025-05-29-21300f18.zip to s3://spi-docs-inbox/prod-swiftlang-swift-format-602.0.0-prerelease-2025-05-29-21300f18.zip
Copying... [10%]
Copying... [20%]
Copying... [31%]
Copying... [41%]
Copying... [51%]
Copying... [61%]
Copying... [72%]
Copying... [82%]
Copying... [92%]
Copying... [100%]
Done.