The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of swift-format, reference main (24c744), with Swift 6.1 for macOS (SPM) on 11 Jun 2025 19:49:15 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

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 |   {
/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 |   {
[916/975] Emitting module generate_swift_format
[917/975] Compiling generate_swift_format Syntax+Convenience.swift
[918/975] Compiling generate_swift_format main.swift
[919/975] Compiling generate_swift_format RuleNameCacheGenerator.swift
[920/975] Compiling generate_swift_format RuleRegistryGenerator.swift
[921/975] Compiling generate_swift_format FileGenerator.swift
[922/975] Compiling swift_format PerformanceMeasurement.swift
[923/975] Compiling swift_format SwiftFormatCommand.swift
[924/975] Compiling swift_format TTY.swift
[926/977] Compiling generate_swift_format RuleDocumentationGenerator.swift
[927/977] Emitting module swift_format
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the configuration in JSON format to standard output",
22 |       discussion: """
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/SwiftFormatCommand.swift:19:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | @main
18 | struct SwiftFormatCommand: ParsableCommand {
19 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     commandName: "swift-format",
21 |     abstract: "Format or lint Swift source code",
[928/977] Compiling swift_format Diagnostic.swift
[929/977] Compiling swift_format DiagnosticsEngine.swift
[930/977] Compiling swift_format FileHandleTextOutputStream.swift
[931/977] Compiling swift_format StderrDiagnosticPrinter.swift
[932/977] Compiling generate_swift_format PipelineGenerator.swift
[933/977] Compiling generate_swift_format RuleCollector.swift
[933/977] Write Objects.LinkFileList
[935/977] Compiling swift_format PrintVersion.swift
[936/977] Compiling swift_format ConfigurationOptions.swift
[937/977] Compiling swift_format ConfigurationLoader.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",
[938/977] Compiling swift_format FormatFrontend.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",
[939/977] Compiling swift_format Frontend.swift
[940/977] Compiling swift_format LintFrontend.swift
[941/977] Compiling swift_format VersionOptions.swift
[947/977] Emitting module swift_format
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the configuration in JSON format to standard output",
22 |       discussion: """
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/SwiftFormatCommand.swift:19:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | @main
18 | struct SwiftFormatCommand: ParsableCommand {
19 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     commandName: "swift-format",
21 |     abstract: "Format or lint Swift source code",
[948/977] Compiling swift_format DumpConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the configuration in JSON format to standard output",
22 |       discussion: """
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
[949/977] Compiling swift_format Format.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the configuration in JSON format to standard output",
22 |       discussion: """
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/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 {
[952/977] Compiling swift_format Lint.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
[953/977] Compiling swift_format LintFormatOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/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",
/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 {
[959/977] Write Objects.LinkFileList
/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/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."
[965/977] Linking generate-swift-format
[966/977] Applying generate-swift-format
[967/977] Linking swift-format-tool
[968/977] Linking swift-format
[969/977] Applying swift-format-tool
[970/977] Applying swift-format
[972/977] Emitting module _SwiftFormatTestSupport
[973/977] Compiling _SwiftFormatTestSupport FindingSpec.swift
[974/977] Compiling _SwiftFormatTestSupport MarkedText.swift
[975/977] Compiling _SwiftFormatTestSupport Parsing.swift
[976/977] Compiling _SwiftFormatTestSupport Configuration+Testing.swift
[977/977] Compiling _SwiftFormatTestSupport DiagnosingTestCase.swift
Build complete! (42.99s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser.git"
    },
    {
      "identity" : "swift-markdown",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-markdown.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "swift-format",
  "name" : "swift-format",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    }
  ],
  "products" : [
    {
      "name" : "swift-format",
      "targets" : [
        "swift-format"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "SwiftFormat",
      "targets" : [
        "SwiftFormat"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "FormatPlugin",
      "targets" : [
        "Format Source Code"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "LintPlugin",
      "targets" : [
        "Lint Source Code"
      ],
      "type" : {
        "plugin" : null
      }
    },
    {
      "name" : "generate-swift-format",
      "targets" : [
        "generate-swift-format"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "swift_format",
      "module_type" : "SwiftTarget",
      "name" : "swift-format",
      "path" : "Sources/swift-format",
      "product_dependencies" : [
        "ArgumentParser",
        "SwiftDiagnostics",
        "SwiftParser",
        "SwiftSyntax"
      ],
      "product_memberships" : [
        "swift-format",
        "FormatPlugin",
        "LintPlugin"
      ],
      "sources" : [
        "Frontend/ConfigurationLoader.swift",
        "Frontend/FormatFrontend.swift",
        "Frontend/Frontend.swift",
        "Frontend/LintFrontend.swift",
        "PrintVersion.swift",
        "Subcommands/ConfigurationOptions.swift",
        "Subcommands/DumpConfiguration.swift",
        "Subcommands/Format.swift",
        "Subcommands/Lint.swift",
        "Subcommands/LintFormatOptions.swift",
        "Subcommands/PerformanceMeasurement.swift",
        "SwiftFormatCommand.swift",
        "Utilities/Diagnostic.swift",
        "Utilities/DiagnosticsEngine.swift",
        "Utilities/FileHandleTextOutputStream.swift",
        "Utilities/StderrDiagnosticPrinter.swift",
        "Utilities/TTY.swift",
        "VersionOptions.swift"
      ],
      "target_dependencies" : [
        "_SwiftFormatInstructionCounter",
        "SwiftFormat"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "generate_swift_format",
      "module_type" : "SwiftTarget",
      "name" : "generate-swift-format",
      "path" : "Sources/generate-swift-format",
      "product_memberships" : [
        "generate-swift-format"
      ],
      "sources" : [
        "FileGenerator.swift",
        "PipelineGenerator.swift",
        "RuleCollector.swift",
        "RuleDocumentationGenerator.swift",
        "RuleNameCacheGenerator.swift",
        "RuleRegistryGenerator.swift",
        "Syntax+Convenience.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "_SwiftFormatTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "_SwiftFormatTestSupport",
      "path" : "Sources/_SwiftFormatTestSupport",
      "product_dependencies" : [
        "SwiftOperators",
        "SwiftParser",
        "SwiftParserDiagnostics",
        "SwiftSyntax",
        "SwiftSyntaxBuilder"
      ],
      "sources" : [
        "Configuration+Testing.swift",
        "DiagnosingTestCase.swift",
        "FindingSpec.swift",
        "MarkedText.swift",
        "Parsing.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_SwiftFormatInstructionCounter",
      "module_type" : "ClangTarget",
      "name" : "_SwiftFormatInstructionCounter",
      "path" : "Sources/_SwiftFormatInstructionCounter",
      "product_memberships" : [
        "swift-format",
        "FormatPlugin",
        "LintPlugin"
      ],
      "sources" : [
        "src/InstructionsExecuted.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftFormatTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFormatTests",
      "path" : "Tests/SwiftFormatTests",
      "product_dependencies" : [
        "Markdown",
        "SwiftOperators",
        "SwiftParser",
        "SwiftSyntax",
        "SwiftSyntaxBuilder"
      ],
      "sources" : [
        "API/ConfigurationTests.swift",
        "Core/DocumentationCommentTests.swift",
        "Core/DocumentationCommentTextTests.swift",
        "Core/RuleMaskTests.swift",
        "PrettyPrint/AccessorTests.swift",
        "PrettyPrint/ArrayDeclTests.swift",
        "PrettyPrint/AsExprTests.swift",
        "PrettyPrint/AssignmentExprTests.swift",
        "PrettyPrint/AttributeTests.swift",
        "PrettyPrint/AvailabilityConditionTests.swift",
        "PrettyPrint/BackDeployAttributeTests.swift",
        "PrettyPrint/BacktickTests.swift",
        "PrettyPrint/BinaryOperatorExprTests.swift",
        "PrettyPrint/BorrowExprTests.swift",
        "PrettyPrint/ClassDeclTests.swift",
        "PrettyPrint/ClosureExprTests.swift",
        "PrettyPrint/CommaTests.swift",
        "PrettyPrint/CommentTests.swift",
        "PrettyPrint/ConstrainedSugarTypeTests.swift",
        "PrettyPrint/ConsumeExprTests.swift",
        "PrettyPrint/CopyExprSyntax.swift",
        "PrettyPrint/DeclNameArgumentTests.swift",
        "PrettyPrint/DeinitializerDeclTests.swift",
        "PrettyPrint/DictionaryDeclTests.swift",
        "PrettyPrint/DifferentiationAttributeTests.swift",
        "PrettyPrint/DiscardStmtTests.swift",
        "PrettyPrint/DoStmtTests.swift",
        "PrettyPrint/EnumDeclTests.swift",
        "PrettyPrint/ExpressionModifierTests.swift",
        "PrettyPrint/ExtensionDeclTests.swift",
        "PrettyPrint/ForInStmtTests.swift",
        "PrettyPrint/FunctionCallTests.swift",
        "PrettyPrint/FunctionDeclTests.swift",
        "PrettyPrint/FunctionTypeTests.swift",
        "PrettyPrint/GarbageTextTests.swift",
        "PrettyPrint/GuardStmtTests.swift",
        "PrettyPrint/IfConfigTests.swift",
        "PrettyPrint/IfStmtTests.swift",
        "PrettyPrint/IgnoreNodeTests.swift",
        "PrettyPrint/ImportTests.swift",
        "PrettyPrint/IndentBlankLinesTests.swift",
        "PrettyPrint/InitializerDeclTests.swift",
        "PrettyPrint/KeyPathExprTests.swift",
        "PrettyPrint/LineNumbersTests.swift",
        "PrettyPrint/MacroCallTests.swift",
        "PrettyPrint/MacroDeclTests.swift",
        "PrettyPrint/MemberAccessExprTests.swift",
        "PrettyPrint/MemberTypeIdentifierTests.swift",
        "PrettyPrint/NewlineTests.swift",
        "PrettyPrint/ObjectLiteralExprTests.swift",
        "PrettyPrint/OperatorDeclTests.swift",
        "PrettyPrint/ParameterPackTests.swift",
        "PrettyPrint/ParenthesizedExprTests.swift",
        "PrettyPrint/PatternBindingTests.swift",
        "PrettyPrint/PrettyPrintTestCase.swift",
        "PrettyPrint/ProtocolDeclTests.swift",
        "PrettyPrint/RepeatStmtTests.swift",
        "PrettyPrint/RespectsExistingLineBreaksTests.swift",
        "PrettyPrint/SelectionTests.swift",
        "PrettyPrint/SemicolonTests.swift",
        "PrettyPrint/StringTests.swift",
        "PrettyPrint/StructDeclTests.swift",
        "PrettyPrint/SubscriptDeclTests.swift",
        "PrettyPrint/SubscriptExprTests.swift",
        "PrettyPrint/SwitchCaseIndentConfigTests.swift",
        "PrettyPrint/SwitchStmtTests.swift",
        "PrettyPrint/TernaryExprTests.swift",
        "PrettyPrint/TupleDeclTests.swift",
        "PrettyPrint/TypeAliasTests.swift",
        "PrettyPrint/ValueGenericsTests.swift",
        "PrettyPrint/VariableDeclTests.swift",
        "PrettyPrint/WhileStmtTests.swift",
        "PrettyPrint/WhitespaceLintTests.swift",
        "PrettyPrint/WhitespaceTestCase.swift",
        "PrettyPrint/YieldStmtTests.swift",
        "Rules/AllPublicDeclarationsHaveDocumentationTests.swift",
        "Rules/AlwaysUseLiteralForEmptyCollectionInitTests.swift",
        "Rules/AlwaysUseLowerCamelCaseTests.swift",
        "Rules/AmbiguousTrailingClosureOverloadTests.swift",
        "Rules/AvoidRetroactiveConformancesTests.swift",
        "Rules/BeginDocumentationCommentWithOneLineSummaryTests.swift",
        "Rules/DoNotUseSemicolonsTests.swift",
        "Rules/DontRepeatTypeInStaticPropertiesTests.swift",
        "Rules/FileScopedDeclarationPrivacyTests.swift",
        "Rules/FullyIndirectEnumTests.swift",
        "Rules/GroupNumericLiteralsTests.swift",
        "Rules/IdentifiersMustBeASCIITests.swift",
        "Rules/ImportsXCTestVisitorTests.swift",
        "Rules/LintOrFormatRuleTestCase.swift",
        "Rules/NeverForceUnwrapTests.swift",
        "Rules/NeverUseForceTryTests.swift",
        "Rules/NeverUseImplicitlyUnwrappedOptionalsTests.swift",
        "Rules/NoAccessLevelOnExtensionDeclarationTests.swift",
        "Rules/NoAssignmentInExpressionsTests.swift",
        "Rules/NoBlockCommentsTests.swift",
        "Rules/NoCasesWithOnlyFallthroughTests.swift",
        "Rules/NoEmptyLinesOpeningClosingBracesTests.swift",
        "Rules/NoEmptyTrailingClosureParenthesesTests.swift",
        "Rules/NoLabelsInCasePatternsTests.swift",
        "Rules/NoLeadingUnderscoresTests.swift",
        "Rules/NoParensAroundConditionsTests.swift",
        "Rules/NoPlaygroundLiteralsTests.swift",
        "Rules/NoVoidReturnOnFunctionSignatureTests.swift",
        "Rules/OmitReturnsTests.swift",
        "Rules/OneCasePerLineTests.swift",
        "Rules/OneVariableDeclarationPerLineTests.swift",
        "Rules/OnlyOneTrailingClosureArgumentTests.swift",
        "Rules/OrderedImportsTests.swift",
        "Rules/ReplaceForEachWithForLoopTests.swift",
        "Rules/ReturnVoidInsteadOfEmptyTupleTests.swift",
        "Rules/TypeNamesShouldBeCapitalizedTests.swift",
        "Rules/UseEarlyExitsTests.swift",
        "Rules/UseExplicitNilCheckInConditionsTests.swift",
        "Rules/UseLetInEveryBoundCaseVariableTests.swift",
        "Rules/UseShorthandTypeNamesTests.swift",
        "Rules/UseSingleLinePropertyGetterTests.swift",
        "Rules/UseSynthesizedInitializerTests.swift",
        "Rules/UseTripleSlashForDocumentationCommentsTests.swift",
        "Rules/UseWhereClausesInForLoopsTests.swift",
        "Rules/ValidateDocumentationCommentsTests.swift",
        "Utilities/FileIteratorTests.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat",
        "_SwiftFormatTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftFormatPerformanceTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFormatPerformanceTests",
      "path" : "Tests/SwiftFormatPerformanceTests",
      "product_dependencies" : [
        "SwiftParser",
        "SwiftSyntax"
      ],
      "sources" : [
        "WhitespaceLinterPerformanceTests.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat",
        "_SwiftFormatTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftFormat",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFormat",
      "path" : "Sources/SwiftFormat",
      "product_dependencies" : [
        "Markdown",
        "SwiftOperators",
        "SwiftParser",
        "SwiftParserDiagnostics",
        "SwiftSyntax",
        "SwiftSyntaxBuilder"
      ],
      "product_memberships" : [
        "swift-format",
        "SwiftFormat",
        "FormatPlugin",
        "LintPlugin",
        "generate-swift-format"
      ],
      "sources" : [
        "API/Configuration+Default.swift",
        "API/Configuration+Dump.swift",
        "API/Configuration.swift",
        "API/DebugOptions.swift",
        "API/Finding.swift",
        "API/FindingCategorizing.swift",
        "API/Indent.swift",
        "API/Selection.swift",
        "API/SwiftFormatError.swift",
        "API/SwiftFormatter.swift",
        "API/SwiftLinter.swift",
        "Core/Context.swift",
        "Core/DocumentationComment.swift",
        "Core/DocumentationCommentText.swift",
        "Core/Finding+Convenience.swift",
        "Core/FindingEmitter.swift",
        "Core/FormatPipeline.swift",
        "Core/FunctionDeclSyntax+Convenience.swift",
        "Core/ImportsXCTestVisitor.swift",
        "Core/LazySplitSequence.swift",
        "Core/LintPipeline.swift",
        "Core/ModifierListSyntax+Convenience.swift",
        "Core/Parsing.swift",
        "Core/Pipelines+Generated.swift",
        "Core/RememberingIterator.swift",
        "Core/Rule.swift",
        "Core/RuleBasedFindingCategory.swift",
        "Core/RuleMask.swift",
        "Core/RuleNameCache+Generated.swift",
        "Core/RuleRegistry+Generated.swift",
        "Core/RuleState.swift",
        "Core/SyntaxFormatRule.swift",
        "Core/SyntaxLintRule.swift",
        "Core/SyntaxProtocol+Convenience.swift",
        "Core/SyntaxTraits.swift",
        "Core/Trivia+Convenience.swift",
        "Core/WithAttributesSyntax+Convenience.swift",
        "Core/WithSemicolonSyntax.swift",
        "PrettyPrint/Comment.swift",
        "PrettyPrint/Indent+Length.swift",
        "PrettyPrint/PrettyPrint.swift",
        "PrettyPrint/PrettyPrintBuffer.swift",
        "PrettyPrint/PrettyPrintFindingCategory.swift",
        "PrettyPrint/Token.swift",
        "PrettyPrint/TokenStreamCreator.swift",
        "PrettyPrint/Verbatim.swift",
        "PrettyPrint/WhitespaceFindingCategory.swift",
        "PrettyPrint/WhitespaceLinter.swift",
        "Rules/AllPublicDeclarationsHaveDocumentation.swift",
        "Rules/AlwaysUseLiteralForEmptyCollectionInit.swift",
        "Rules/AlwaysUseLowerCamelCase.swift",
        "Rules/AmbiguousTrailingClosureOverload.swift",
        "Rules/AvoidRetroactiveConformances.swift",
        "Rules/BeginDocumentationCommentWithOneLineSummary.swift",
        "Rules/DoNotUseSemicolons.swift",
        "Rules/DontRepeatTypeInStaticProperties.swift",
        "Rules/FileScopedDeclarationPrivacy.swift",
        "Rules/FullyIndirectEnum.swift",
        "Rules/GroupNumericLiterals.swift",
        "Rules/IdentifiersMustBeASCII.swift",
        "Rules/NeverForceUnwrap.swift",
        "Rules/NeverUseForceTry.swift",
        "Rules/NeverUseImplicitlyUnwrappedOptionals.swift",
        "Rules/NoAccessLevelOnExtensionDeclaration.swift",
        "Rules/NoAssignmentInExpressions.swift",
        "Rules/NoBlockComments.swift",
        "Rules/NoCasesWithOnlyFallthrough.swift",
        "Rules/NoEmptyLineOpeningClosingBraces.swift",
        "Rules/NoEmptyTrailingClosureParentheses.swift",
        "Rules/NoLabelsInCasePatterns.swift",
        "Rules/NoLeadingUnderscores.swift",
        "Rules/NoParensAroundConditions.swift",
        "Rules/NoPlaygroundLiterals.swift",
        "Rules/NoVoidReturnOnFunctionSignature.swift",
        "Rules/OmitExplicitReturns.swift",
        "Rules/OneCasePerLine.swift",
        "Rules/OneVariableDeclarationPerLine.swift",
        "Rules/OnlyOneTrailingClosureArgument.swift",
        "Rules/OrderedImports.swift",
        "Rules/ReplaceForEachWithForLoop.swift",
        "Rules/ReturnVoidInsteadOfEmptyTuple.swift",
        "Rules/TypeNamesShouldBeCapitalized.swift",
        "Rules/UseEarlyExits.swift",
        "Rules/UseExplicitNilCheckInConditions.swift",
        "Rules/UseLetInEveryBoundCaseVariable.swift",
        "Rules/UseShorthandTypeNames.swift",
        "Rules/UseSingleLinePropertyGetter.swift",
        "Rules/UseSynthesizedInitializer.swift",
        "Rules/UseTripleSlashForDocumentationComments.swift",
        "Rules/UseWhereClausesInForLoops.swift",
        "Rules/ValidateDocumentationComments.swift",
        "Utilities/FileIterator.swift",
        "Utilities/URL+isRoot.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Lint_Source_Code",
      "module_type" : "PluginTarget",
      "name" : "Lint Source Code",
      "path" : "Plugins/LintPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Lint source code for a specified target.",
          "type" : "custom",
          "verb" : "lint-source-code"
        },
        "permissions" : [
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "LintPlugin"
      ],
      "sources" : [
        "plugin.swift"
      ],
      "target_dependencies" : [
        "swift-format"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "Format_Source_Code",
      "module_type" : "PluginTarget",
      "name" : "Format Source Code",
      "path" : "Plugins/FormatPlugin",
      "plugin_capability" : {
        "intent" : {
          "type" : "sourceCodeFormatting"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "This command formats the Swift source files",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "FormatPlugin"
      ],
      "sources" : [
        "plugin.swift"
      ],
      "target_dependencies" : [
        "swift-format"
      ],
      "type" : "plugin"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/swiftlang/swift-format/main
Repository:               swiftlang/swift-format
Swift version used:       6.1
Target:                   SwiftFormat
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'SwiftFormat'...
Finished extracting symbol information for 'SwiftFormat'. (16.60s)
Building documentation for 'SwiftFormat'...
Finished building documentation for 'SwiftFormat' (0.14s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-format/main
Updating https://github.com/swiftlang/swift-syntax.git
Updated https://github.com/swiftlang/swift-syntax.git (0.89s)
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updating https://github.com/swiftlang/swift-cmark.git
Updating https://github.com/apple/swift-markdown.git
Updating https://github.com/apple/swift-argument-parser.git
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.67s)
Updated https://github.com/apple/swift-markdown.git (0.76s)
Updated https://github.com/swiftlang/swift-cmark.git (0.76s)
Updated https://github.com/apple/swift-argument-parser.git (0.52s)
Computing version for https://github.com/apple/swift-markdown.git
Computed https://github.com/apple/swift-markdown.git at 0.6.0 (1.76s)
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.4 (0.56s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.88s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.49s)
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.4
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 Identifier.swift
[7/53] Compiling SymbolKit KindIdentifier.swift
[8/53] Compiling SymbolKit Location.swift
[9/53] Compiling SymbolKit Mutability.swift
[10/53] Compiling SymbolKit GenericConstraint.swift
[11/53] Compiling SymbolKit GenericParameter.swift
[12/53] Compiling SymbolKit Generics.swift
[13/53] Compiling SymbolKit Namespace.swift
[14/57] Compiling SymbolKit Mixin+Equals.swift
[15/57] Compiling SymbolKit Mixin+Hash.swift
[16/57] Compiling SymbolKit Mixin.swift
[17/57] Compiling SymbolKit LineList.swift
[18/57] Compiling SymbolKit Position.swift
[19/57] Emitting module SymbolKit
[20/57] Compiling SymbolKit SourceRange.swift
[21/57] Compiling SymbolKit Metadata.swift
[22/57] Compiling SymbolKit Module.swift
[23/57] Compiling SymbolKit OperatingSystem.swift
[24/57] Compiling SymbolKit Platform.swift
[25/57] Compiling SymbolKit DeclarationFragments.swift
[26/57] Compiling SymbolKit Fragment.swift
[27/57] Compiling SymbolKit FragmentKind.swift
[28/57] Compiling SymbolKit FunctionParameter.swift
[29/57] Compiling SymbolKit FunctionSignature.swift
[30/57] Compiling SymbolKit SemanticVersion.swift
[31/57] Compiling SymbolKit AccessControl.swift
[32/57] Compiling SymbolKit Availability.swift
[33/57] Compiling SymbolKit AvailabilityItem.swift
[34/57] Compiling SymbolKit Domain.swift
[35/57] Compiling SymbolKit Names.swift
[36/57] Compiling SymbolKit SPI.swift
[37/57] Compiling SymbolKit Snippet.swift
[38/57] Compiling SymbolKit Extension.swift
[39/57] Compiling SymbolKit Relationship.swift
[40/57] Compiling SymbolKit RelationshipKind.swift
[41/57] Compiling SymbolKit SourceOrigin.swift
[42/57] Compiling SymbolKit GenericConstraints.swift
[43/57] Compiling SymbolKit Swift.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.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 Snippet.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.84s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/13] Emitting module SwiftSyntax602
[3/13] Compiling SwiftSyntax602 Empty.swift
[4/35] Compiling SwiftSyntax603 Empty.swift
[5/77] Emitting module SwiftSyntax509
[6/77] Compiling SwiftSyntax509 Empty.swift
[7/77] Emitting module SwiftSyntax603
[8/77] Emitting module SwiftSyntax600
[9/77] Compiling SwiftSyntax600 Empty.swift
[10/77] Compiling SwiftSyntax510 Empty.swift
[11/77] Emitting module SwiftSyntax510
[12/77] Emitting module SwiftSyntax601
[13/77] Compiling SwiftSyntax601 Empty.swift
[14/77] Compiling Markdown BlockMarkup.swift
[15/77] Compiling Markdown InlineContainer.swift
[16/77] Compiling Markdown InlineMarkup.swift
[17/77] Compiling Markdown ListItemContainer.swift
[18/77] Compiling Markdown AtomicCounter.swift
[19/77] Compiling Markdown CharacterExtensions.swift
[20/77] Compiling Markdown CollectionExtensions.swift
[21/83] Compiling Markdown Link.swift
[22/83] Compiling Markdown Strikethrough.swift
[23/83] Compiling Markdown Strong.swift
[24/83] Compiling Markdown CustomInline.swift
[25/83] Compiling Markdown InlineCode.swift
[26/83] Compiling Markdown InlineHTML.swift
[27/83] Compiling Markdown LineBreak.swift
[28/83] Compiling Markdown ParseOptions.swift
[29/83] Compiling Markdown RangeAdjuster.swift
[30/83] Compiling Markdown RangerTracker.swift
[31/83] Compiling Markdown MarkupRewriter.swift
[32/83] Compiling Markdown BasicBlockContainer.swift
[33/83] Compiling Markdown BasicInlineContainer.swift
[34/83] Compiling Markdown BlockContainer.swift
[35/83] Compiling Markdown HTMLBlock.swift
[36/83] Compiling Markdown Heading.swift
[37/83] Compiling Markdown ThematicBreak.swift
[38/83] Compiling Markdown Table.swift
[39/83] Compiling Markdown TableBody.swift
[40/83] Compiling Markdown TableCell.swift
[41/83] Compiling Markdown TableCellContainer.swift
[42/147] Emitting module Markdown
[43/147] Compiling SwiftSyntax Utils.swift
[44/147] Compiling SwiftSyntax ChildNameForKeyPath.swift
[45/147] Compiling SwiftSyntax Keyword.swift
[46/147] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[47/147] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[48/147] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[49/147] Compiling SwiftSyntax SyntaxBaseNodes.swift
[50/147] Compiling SwiftSyntax AbsolutePosition.swift
[51/147] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[52/147] Compiling SwiftSyntax ArenaAllocatedBuffer.swift
[53/147] Compiling SwiftSyntax Assert.swift
[54/147] Compiling SwiftSyntax BumpPtrAllocator.swift
[55/147] Compiling SwiftSyntax CommonAncestor.swift
[56/147] Compiling SwiftSyntax Convenience.swift
[64/154] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[65/154] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[66/154] Compiling SwiftSyntax RawSyntaxTokenView.swift
[67/154] Compiling SwiftSyntax SourceEdit.swift
[68/154] Compiling SwiftSyntax SourceLength.swift
[69/154] Compiling SwiftSyntax SourceLocation.swift
[70/154] Compiling SwiftSyntax SourcePresence.swift
[71/154] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[72/154] Compiling SwiftSyntax Syntax.swift
[73/154] Compiling SwiftSyntax SyntaxChildren.swift
[74/154] Compiling SwiftSyntax SyntaxCollection.swift
[75/154] Compiling SwiftSyntax SyntaxHashable.swift
[76/154] Compiling SwiftSyntax SyntaxIdentifier.swift
[77/154] Compiling SwiftSyntax SyntaxNodeStructure.swift
[78/154] Compiling SwiftSyntax SyntaxNodesD.swift
[79/154] Compiling SwiftSyntax SyntaxNodesEF.swift
[80/154] Compiling SwiftSyntax SyntaxNodesGHI.swift
[81/154] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[82/154] Compiling SwiftSyntax SyntaxNodesOP.swift
[83/154] Compiling SwiftSyntax SyntaxNodesQRS.swift
[84/154] Compiling SwiftSyntax SyntaxProtocol.swift
[85/154] Compiling SwiftSyntax SyntaxText.swift
[86/154] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[87/154] Compiling SwiftSyntax TokenDiagnostic.swift
[88/154] Compiling SwiftSyntax TokenSequence.swift
[89/154] Compiling SwiftSyntax TokenSyntax.swift
[90/154] Compiling SwiftSyntax Trivia.swift
[91/154] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[92/154] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[93/154] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[94/154] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[95/154] Compiling SwiftSyntax RawSyntaxValidation.swift
[96/154] Compiling SwiftSyntax SyntaxNodesAB.swift
[97/154] Compiling SwiftSyntax SyntaxNodesC.swift
[98/154] Compiling SwiftSyntax SyntaxCollections.swift
[99/154] Compiling SwiftSyntax SyntaxEnum.swift
[100/154] Compiling SwiftSyntax SyntaxKind.swift
[101/154] Compiling SwiftSyntax SyntaxRewriter.swift
[102/154] Compiling SwiftSyntax SyntaxTraits.swift
[103/154] Compiling SwiftSyntax SyntaxVisitor.swift
[104/154] Compiling SwiftSyntax TokenKind.swift
[105/154] Compiling SwiftSyntax Tokens.swift
[106/154] Compiling SwiftSyntax TriviaPieces.swift
[107/154] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[108/154] Compiling SwiftSyntax RawSyntaxNodesC.swift
[109/154] Compiling SwiftSyntax RawSyntaxNodesD.swift
[110/154] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[111/154] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[112/154] Emitting module SwiftSyntax
[140/154] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[148/154] Compiling SwiftSyntax CustomTraits.swift
[149/154] Compiling SwiftSyntax EditorPlaceholder.swift
[150/154] Compiling SwiftSyntax Identifier.swift
[151/154] Compiling SwiftSyntax MemoryLayout.swift
[152/154] Compiling SwiftSyntax MissingNodeInitializers.swift
[153/154] Compiling SwiftSyntax RawSyntax.swift
[154/154] Compiling SwiftSyntax RawSyntaxArena.swift
[155/214] Compiling SwiftDiagnostics Message.swift
[156/215] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[157/215] Compiling SwiftBasicFormat Syntax+Extensions.swift
[158/215] Compiling SwiftDiagnostics Note.swift
[159/215] Compiling SwiftBasicFormat InferIndentation.swift
[160/215] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[161/215] Compiling SwiftBasicFormat Indenter.swift
[162/215] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[163/215] Compiling SwiftDiagnostics FixIt.swift
[164/215] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[165/215] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[166/215] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[167/215] Compiling SwiftDiagnostics Diagnostic.swift
[168/215] Compiling SwiftDiagnostics Convenience.swift
[169/215] Emitting module SwiftDiagnostics
[170/215] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[171/215] Emitting module SwiftBasicFormat
[172/215] Compiling SwiftBasicFormat BasicFormat.swift
[173/215] Compiling SwiftParser TopLevel.swift
[174/215] Compiling SwiftParser TriviaParser.swift
[175/215] Compiling SwiftParser Types.swift
[176/215] Compiling SwiftParser ExperimentalFeatures.swift
[177/219] Compiling SwiftParser StringLiterals.swift
[178/219] Compiling SwiftParser SwiftParserCompatibility.swift
[179/219] Compiling SwiftParser SwiftVersion.swift
[180/219] Compiling SwiftParser SyntaxUtils.swift
[181/219] Compiling SwiftParser TokenConsumer.swift
[182/219] Compiling SwiftParser TokenPrecedence.swift
[183/219] Compiling SwiftParser TokenSpec.swift
[184/219] Compiling SwiftParser TokenSpecSet.swift
[185/219] Compiling SwiftParser Names.swift
[186/219] Compiling SwiftParser Nominals.swift
[187/219] Compiling SwiftParser Parameters.swift
[188/219] Compiling SwiftParser ParseSourceFile.swift
[189/219] Compiling SwiftParser Parser.swift
[190/219] Compiling SwiftParser RegexLiteralLexer.swift
[191/219] Compiling SwiftParser UnicodeScalarExtensions.swift
[192/219] Compiling SwiftParser Lookahead.swift
[193/219] Compiling SwiftParser LoopProgressCondition.swift
[194/219] Compiling SwiftParser Modifiers.swift
[195/219] Compiling SwiftParser Patterns.swift
[196/219] Compiling SwiftParser Recovery.swift
[197/219] Compiling SwiftParser Specifiers.swift
[198/219] Compiling SwiftParser Statements.swift
[199/219] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[200/219] Emitting module SwiftParser
[201/219] Compiling SwiftParser IsValidIdentifier.swift
[202/219] Compiling SwiftParser Cursor.swift
[203/219] Compiling SwiftParser Lexeme.swift
[204/219] Compiling SwiftParser LexemeSequence.swift
[205/219] Compiling SwiftParser Lexer.swift
[206/219] Compiling SwiftParser Declarations.swift
[207/219] Compiling SwiftParser Directives.swift
[208/219] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[209/219] Compiling SwiftParser Expressions.swift
[210/219] Compiling SwiftParser IncrementalParseTransition.swift
[211/219] Compiling SwiftParser Attributes.swift
[212/219] Compiling SwiftParser Availability.swift
[213/219] Compiling SwiftParser CharacterInfo.swift
[214/219] Compiling SwiftParser CollectionNodes+Parsable.swift
[215/219] Compiling SwiftParser CompilerFiles.swift
[216/219] Compiling SwiftParser IsLexerClassified.swift
[217/219] Compiling SwiftParser LayoutNodes+Parsable.swift
[218/219] Compiling SwiftParser Parser+TokenSpecSet.swift
[219/219] Compiling SwiftParser TokenSpecStaticMembers.swift
[220/242] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[221/243] Compiling SwiftOperators PrecedenceGroup.swift
[222/243] Compiling SwiftOperators PrecedenceGraph.swift
[223/243] Compiling SwiftOperators OperatorTable+Semantics.swift
[224/244] Compiling SwiftParserDiagnostics PresenceUtils.swift
[225/244] Compiling SwiftOperators Operator.swift
[226/244] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[227/244] Compiling SwiftOperators OperatorTable.swift
[228/244] Compiling SwiftOperators OperatorTable+Defaults.swift
[229/244] Compiling SwiftOperators OperatorError.swift
[230/244] Emitting module SwiftOperators
[231/244] Compiling SwiftOperators OperatorError+Diagnostics.swift
[232/244] Compiling SwiftOperators OperatorTable+Folding.swift
[233/244] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[234/244] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[235/244] Compiling SwiftParserDiagnostics Utils.swift
[236/244] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[237/244] Compiling SwiftOperators SyntaxSynthesis.swift
[238/244] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[239/244] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[240/244] Compiling SwiftParserDiagnostics MissingNodesError.swift
[241/244] Compiling SwiftParserDiagnostics MissingTokenError.swift
[242/244] Emitting module SwiftParserDiagnostics
[243/244] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[244/244] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[245/259] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[246/260] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[247/260] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[248/260] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[249/260] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[250/260] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[251/260] Emitting module SwiftSyntaxBuilder
[252/260] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[253/260] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[254/260] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[255/260] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[256/260] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[257/260] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[258/260] Compiling SwiftSyntaxBuilder Indenter.swift
[259/260] Compiling SwiftSyntaxBuilder ListBuilder.swift
[260/260] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[261/345] Compiling SwiftFormat Configuration+Default.swift
[262/345] Compiling SwiftFormat Configuration+Dump.swift
[263/345] Compiling SwiftFormat Configuration.swift
[264/345] Compiling SwiftFormat DebugOptions.swift
[265/345] Compiling SwiftFormat Finding.swift
[266/345] Compiling SwiftFormat FindingCategorizing.swift
[267/345] Compiling SwiftFormat Indent.swift
[268/345] Compiling SwiftFormat Selection.swift
[269/345] Compiling SwiftFormat SwiftFormatError.swift
[270/345] Compiling SwiftFormat SwiftFormatter.swift
[271/354] Compiling SwiftFormat FullyIndirectEnum.swift
[272/354] Compiling SwiftFormat GroupNumericLiterals.swift
[273/354] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[274/354] Compiling SwiftFormat NeverForceUnwrap.swift
[275/354] Compiling SwiftFormat NeverUseForceTry.swift
[276/354] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[277/354] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[278/354] Compiling SwiftFormat NoAssignmentInExpressions.swift
[279/354] Compiling SwiftFormat NoBlockComments.swift
[280/354] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[281/354] Compiling SwiftFormat NoEmptyLineOpeningClosingBraces.swift
[282/354] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[283/354] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[284/354] Compiling SwiftFormat NoLeadingUnderscores.swift
[285/354] Compiling SwiftFormat NoParensAroundConditions.swift
[286/354] Compiling SwiftFormat NoPlaygroundLiterals.swift
[287/354] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[288/354] Compiling SwiftFormat OmitExplicitReturns.swift
[289/354] Emitting module SwiftFormat
[290/354] Compiling SwiftFormat SwiftLinter.swift
[291/354] Compiling SwiftFormat Context.swift
[292/354] Compiling SwiftFormat DocumentationComment.swift
[293/354] Compiling SwiftFormat DocumentationCommentText.swift
[294/354] Compiling SwiftFormat Finding+Convenience.swift
[295/354] Compiling SwiftFormat FindingEmitter.swift
[296/354] Compiling SwiftFormat FormatPipeline.swift
[297/354] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[298/354] Compiling SwiftFormat ImportsXCTestVisitor.swift
[299/354] Compiling SwiftFormat LazySplitSequence.swift
[300/354] Compiling SwiftFormat RuleState.swift
[301/354] Compiling SwiftFormat SyntaxFormatRule.swift
[302/354] Compiling SwiftFormat SyntaxLintRule.swift
[303/354] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[304/354] Compiling SwiftFormat SyntaxTraits.swift
[305/354] Compiling SwiftFormat Trivia+Convenience.swift
[306/354] Compiling SwiftFormat WithAttributesSyntax+Convenience.swift
[307/354] Compiling SwiftFormat WithSemicolonSyntax.swift
[308/354] Compiling SwiftFormat Comment.swift
[309/354] Compiling SwiftFormat OneCasePerLine.swift
[310/354] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[311/354] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[312/354] Compiling SwiftFormat OrderedImports.swift
[313/354] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[314/354] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[315/354] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[316/354] Compiling SwiftFormat UseEarlyExits.swift
[317/354] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
[318/354] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
[319/354] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[320/354] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[321/354] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[322/354] Compiling SwiftFormat AvoidRetroactiveConformances.swift
[323/354] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[324/354] Compiling SwiftFormat DoNotUseSemicolons.swift
[325/354] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[326/354] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[327/354] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[328/354] Compiling SwiftFormat UseShorthandTypeNames.swift
[329/354] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[330/354] Compiling SwiftFormat UseSynthesizedInitializer.swift
[331/354] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[332/354] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[333/354] Compiling SwiftFormat ValidateDocumentationComments.swift
[334/354] Compiling SwiftFormat FileIterator.swift
[335/354] Compiling SwiftFormat URL+isRoot.swift
[336/354] Compiling SwiftFormat LintPipeline.swift
[337/354] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[338/354] Compiling SwiftFormat Parsing.swift
[339/354] Compiling SwiftFormat Pipelines+Generated.swift
[340/354] Compiling SwiftFormat RememberingIterator.swift
[341/354] Compiling SwiftFormat Rule.swift
[342/354] Compiling SwiftFormat RuleBasedFindingCategory.swift
[343/354] Compiling SwiftFormat RuleMask.swift
[344/354] Compiling SwiftFormat RuleNameCache+Generated.swift
[345/354] Compiling SwiftFormat RuleRegistry+Generated.swift
[346/354] Compiling SwiftFormat Indent+Length.swift
[347/354] Compiling SwiftFormat PrettyPrint.swift
[348/354] Compiling SwiftFormat PrettyPrintBuffer.swift
[349/354] Compiling SwiftFormat PrettyPrintFindingCategory.swift
[350/354] Compiling SwiftFormat Token.swift
[351/354] Compiling SwiftFormat TokenStreamCreator.swift
[352/354] Compiling SwiftFormat Verbatim.swift
[353/354] Compiling SwiftFormat WhitespaceFindingCategory.swift
[354/354] Compiling SwiftFormat WhitespaceLinter.swift
Build of target: 'SwiftFormat' complete! (14.57s)
     304
3	/Users/admin/builder/spi-builder-workspace/.docs/swiftlang/swift-format/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/swiftlang/swift-format/main
File count: 304
Doc size:   3.0MB
Preparing doc bundle ...
Uploading prod-swiftlang-swift-format-main-bc431f5f.zip to s3://spi-docs-inbox/prod-swiftlang-swift-format-main-bc431f5f.zip
Copying... [11%]
Copying... [21%]
Copying... [32%]
Copying... [42%]
Copying... [53%]
Copying... [63%]
Copying... [74%]
Copying... [84%]
Copying... [95%]
Copying... [100%]
Done.