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 (f0f3a8), with Swift 6.1 for Linux on 3 Sep 2025 02:22:14 UTC.

Swift 6 data race errors: 88

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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 2>&1

Build Log

    |              |- 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 {
/host/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 {
/host/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 {
/host/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(
/host/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 |   {
/host/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"
/host/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 |   {
/host/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 {
/host/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 |   {
/host/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 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[944/1004] Emitting module SwiftFormat
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/Core/RuleMask.swift:146:22: warning: static property 'ignoreRegex' is not concurrency-safe because non-'Sendable' type 'IgnoreDirective.RegexExpression' (aka 'Regex<(Substring, ruleNames: Optional<Substring>)>') may have shared mutable state; this is an error in the Swift 6 language mode
144 |
145 |   /// Cached regex object for ignoring rules at the node.
146 |   private static let ignoreRegex: IgnoreDirective.RegexExpression = IgnoreDirective.node.makeRegex()
    |                      |- warning: static property 'ignoreRegex' is not concurrency-safe because non-'Sendable' type 'IgnoreDirective.RegexExpression' (aka 'Regex<(Substring, ruleNames: Optional<Substring>)>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: add '@MainActor' to make static property 'ignoreRegex' part of global actor 'MainActor'
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |
148 |   /// Cached regex object for ignoring rules at the file.
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
  |               `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 |     public var regex: Regex<Output> { get }
4 |     @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/host/spi-builder-workspace/Sources/SwiftFormat/Core/RuleMask.swift:149:22: warning: static property 'ignoreFileRegex' is not concurrency-safe because non-'Sendable' type 'IgnoreDirective.RegexExpression' (aka 'Regex<(Substring, ruleNames: Optional<Substring>)>') may have shared mutable state; this is an error in the Swift 6 language mode
147 |
148 |   /// Cached regex object for ignoring rules at the file.
149 |   private static let ignoreFileRegex: IgnoreDirective.RegexExpression = IgnoreDirective.file.makeRegex()
    |                      |- warning: static property 'ignoreFileRegex' is not concurrency-safe because non-'Sendable' type 'IgnoreDirective.RegexExpression' (aka 'Regex<(Substring, ruleNames: Optional<Substring>)>') may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: add '@MainActor' to make static property 'ignoreFileRegex' part of global actor 'MainActor'
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |
151 |   /// Computes source locations and ranges for syntax nodes in a source file.
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
  |               `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 |     public var regex: Regex<Output> { get }
4 |     @available(iOS 16.0, tvOS 16.0, watchOS 9.0, macOS 13.0, *)
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:855: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
853 |
854 | extension Finding.Message {
855 |   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
856 |     "move end-of-line comment that exceeds the line length"
857 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:858: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
856 |     "move end-of-line comment that exceeds the line length"
857 |
858 |   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
859 |     "add trailing comma to the last element in multiline collection literal"
860 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:861: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
859 |     "add trailing comma to the last element in multiline collection literal"
860 |
861 |   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
862 |     "remove trailing comma from the last element in single line collection literal"
863 | }
/host/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 |   {
/host/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 {
/host/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 {
/host/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 {
/host/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(
/host/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 |   {
/host/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"
/host/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 |   {
/host/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 {
/host/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 |   {
/host/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 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/AvoidRetroactiveConformances.swift:37:26: warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 | extension Finding.Message {
37 |   fileprivate static let doNotUseRetroactive: Finding.Message = "do not declare retroactive conformances"
   |                          |- warning: static property 'doNotUseRetroactive' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'doNotUseRetroactive' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 | }
39 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/BeginDocumentationCommentWithOneLineSummary.swift:32:21: warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |   ///
 31 |   /// This allows test runs on those platforms to test both implementations.
 32 |   public static var _forcesFallbackModeForTesting = false
    |                     |- warning: static property '_forcesFallbackModeForTesting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_forcesFallbackModeForTesting' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_forcesFallbackModeForTesting' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |
 34 |   /// Identifies this rule as being opt-in. Well written docs on declarations are important, but
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:125:26: warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
    |                          |- warning: static property 'removeSemicolon' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolon' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/DoNotUseSemicolons.swift:127:26: warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
125 |   fileprivate static let removeSemicolon: Finding.Message = "remove ';'"
126 |
127 |   fileprivate static let removeSemicolonAndMove: Finding.Message =
    |                          |- warning: static property 'removeSemicolonAndMove' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeSemicolonAndMove' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |     "remove ';' and move the next statement to a new line"
129 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:163:26: warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let replacePrivateWithFileprivate: Finding.Message =
    |                          |- warning: static property 'replacePrivateWithFileprivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replacePrivateWithFileprivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/FileScopedDeclarationPrivacy.swift:166:26: warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
164 |     "replace 'private' with 'fileprivate' on file-scoped declarations"
165 |
166 |   fileprivate static let replaceFileprivateWithPrivate: Finding.Message =
    |                          |- warning: static property 'replaceFileprivateWithPrivate' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'replaceFileprivateWithPrivate' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     "replace 'fileprivate' with 'private' on file-scoped declarations"
168 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/FullyIndirectEnum.swift:142:26: warning: static property 'removeIndirect' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
140 |   }
141 |
142 |   fileprivate static let removeIndirect: Finding.Message = "remove 'indirect' here"
    |                          |- warning: static property 'removeIndirect' is 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 'removeIndirect' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
143 | }
144 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/NeverUseForceTry.swift:50:26: warning: static property 'doNotForceTry' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension Finding.Message {
50 |   fileprivate static let doNotForceTry: Finding.Message = "do not use force try"
   |                          |- warning: static property 'doNotForceTry' is 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 'doNotForceTry' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 | }
52 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/NoAccessLevelOnExtensionDeclaration.swift:219:26: warning: static property 'removeRedundantAccessKeyword' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
217 |
218 | extension Finding.Message {
219 |   fileprivate static let removeRedundantAccessKeyword: Finding.Message =
    |                          |- warning: static property 'removeRedundantAccessKeyword' is 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 'removeRedundantAccessKeyword' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |     "remove this redundant 'internal' access modifier from this extension"
221 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/NoAssignmentInExpressions.swift:163:26: warning: static property 'moveAssignmentToOwnStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
161 |
162 | extension Finding.Message {
163 |   fileprivate static let moveAssignmentToOwnStatement: Finding.Message =
    |                          |- warning: static property 'moveAssignmentToOwnStatement' is 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 'moveAssignmentToOwnStatement' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |     "move this assignment expression into its own statement"
165 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/NoBlockComments.swift:38:26: warning: static property 'avoidBlockComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
36 |
37 | extension Finding.Message {
38 |   fileprivate static let avoidBlockComment: Finding.Message =
   |                          |- warning: static property 'avoidBlockComment' is 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 'avoidBlockComment' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |     "replace this block comment with line comments"
40 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/NoParensAroundConditions.swift:129:26: warning: static property 'removeParensAroundExpression' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
127 |
128 | extension Finding.Message {
129 |   fileprivate static let removeParensAroundExpression: Finding.Message =
    |                          |- warning: static property 'removeParensAroundExpression' is 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 'removeParensAroundExpression' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     "remove the parentheses around this expression"
131 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/NoPlaygroundLiterals.swift:80:26: warning: static property 'replaceColorLiteral' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
78 |
79 | extension Finding.Message {
80 |   fileprivate static let replaceColorLiteral: Finding.Message =
   |                          |- warning: static property 'replaceColorLiteral' is 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 'replaceColorLiteral' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 |     "replace '#colorLiteral' with a call to an initializer on 'NSColor' or 'UIColor'"
82 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/NoPlaygroundLiterals.swift:83:26: warning: static property 'replaceFileLiteral' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
81 |     "replace '#colorLiteral' with a call to an initializer on 'NSColor' or 'UIColor'"
82 |
83 |   fileprivate static let replaceFileLiteral: Finding.Message =
   |                          |- warning: static property 'replaceFileLiteral' is 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 'replaceFileLiteral' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 |     "replace '#fileLiteral' with a call to a method such as 'Bundle.url(forResource:withExtension:)'"
85 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/NoPlaygroundLiterals.swift:86:26: warning: static property 'replaceImageLiteral' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
84 |     "replace '#fileLiteral' with a call to a method such as 'Bundle.url(forResource:withExtension:)'"
85 |
86 |   fileprivate static let replaceImageLiteral: Finding.Message =
   |                          |- warning: static property 'replaceImageLiteral' is 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 'replaceImageLiteral' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 |     "replace '#imageLiteral' with a call to an initializer on 'NSImage' or 'UIImage'"
88 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/OmitExplicitReturns.swift:157:26: warning: static property 'omitReturnStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
155 |
156 | extension Finding.Message {
157 |   fileprivate static let omitReturnStatement: Finding.Message =
    |                          |- warning: static property 'omitReturnStatement' is 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 'omitReturnStatement' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 |     "'return' can be omitted because body consists of a single expression"
159 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/OnlyOneTrailingClosureArgument.swift:33:26: warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | extension Finding.Message {
33 |   fileprivate static let removeTrailingClosure: Finding.Message =
   |                          |- warning: static property 'removeTrailingClosure' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
   |                          |- note: add '@MainActor' to make static property 'removeTrailingClosure' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     "revise this function call to avoid using both closure arguments and a trailing closure"
35 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:610:26: warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
608 |
609 | extension Finding.Message {
610 |   fileprivate static let placeAtTopOfFile: Finding.Message = "place imports at the top of the file"
    |                          |- warning: static property 'placeAtTopOfFile' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'placeAtTopOfFile' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
611 |
612 |   fileprivate static func groupImports(before: LineType, after: LineType) -> Finding.Message {
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:616:26: warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
614 |   }
615 |
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
    |                          |- warning: static property 'removeDuplicateImport' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeDuplicateImport' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/OrderedImports.swift:618:26: warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
616 |   fileprivate static let removeDuplicateImport: Finding.Message = "remove this duplicate import"
617 |
618 |   fileprivate static let sortImports: Finding.Message = "sort import statements lexicographically"
    |                          |- warning: static property 'sortImports' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'sortImports' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 | }
620 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/ReturnVoidInsteadOfEmptyTuple.swift:125:26: warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
123 |
124 | extension Finding.Message {
125 |   fileprivate static let returnVoid: Finding.Message = "replace '()' with 'Void'"
    |                          |- warning: static property 'returnVoid' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'returnVoid' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 | }
127 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/UseEarlyExits.swift:112:26: warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
110 |
111 | extension Finding.Message {
112 |   fileprivate static let useGuardStatement: Finding.Message =
    |                          |- warning: static property 'useGuardStatement' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useGuardStatement' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     "replace this 'if/else' block with a 'guard' statement containing the early exit"
114 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/UseExplicitNilCheckInConditions.swift:123:26: warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
121 |
122 | extension Finding.Message {
123 |   fileprivate static let useExplicitNilComparison: Finding.Message =
    |                          |- warning: static property 'useExplicitNilComparison' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'useExplicitNilComparison' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |     "compare this value using `!= nil` instead of binding and discarding it"
125 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/UseSingleLinePropertyGetter.swift:44:26: warning: static property 'removeExtraneousGetBlock' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | extension Finding.Message {
44 |   fileprivate static let removeExtraneousGetBlock: Finding.Message =
   |                          |- warning: static property 'removeExtraneousGetBlock' is 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 'removeExtraneousGetBlock' part of global actor 'MainActor'
   |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     "remove 'get {...}' around the accessor and move its body directly into the computed property"
46 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/UseSynthesizedInitializer.swift:197:26: warning: static property 'removeRedundantInitializer' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
195 |
196 | extension Finding.Message {
197 |   fileprivate static let removeRedundantInitializer: Finding.Message =
    |                          |- warning: static property 'removeRedundantInitializer' is 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 'removeRedundantInitializer' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 |     "remove this explicit initializer, which is identical to the compiler-synthesized initializer"
199 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/UseTripleSlashForDocumentationComments.swift:112:26: warning: static property 'avoidDocBlockComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
110 |
111 | extension Finding.Message {
112 |   fileprivate static let avoidDocBlockComment: Finding.Message =
    |                          |- warning: static property 'avoidDocBlockComment' is 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 'avoidDocBlockComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |     "replace documentation block comments with documentation line comments"
114 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/UseWhereClausesInForLoops.swift:126:26: warning: static property 'useWhereInsteadOfIf' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
124 |
125 | extension Finding.Message {
126 |   fileprivate static let useWhereInsteadOfIf: Finding.Message =
    |                          |- warning: static property 'useWhereInsteadOfIf' is 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 'useWhereInsteadOfIf' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
127 |     "replace this 'if' statement with a 'where' clause"
128 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/UseWhereClausesInForLoops.swift:129:26: warning: static property 'useWhereInsteadOfGuard' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
127 |     "replace this 'if' statement with a 'where' clause"
128 |
129 |   fileprivate static let useWhereInsteadOfGuard: Finding.Message =
    |                          |- warning: static property 'useWhereInsteadOfGuard' is 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 'useWhereInsteadOfGuard' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     "replace this 'guard' statement with a 'where' clause"
131 | }
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/ValidateDocumentationComments.swift:192:26: warning: static property 'useSingularParameter' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
190 |   }
191 |
192 |   fileprivate static let useSingularParameter: Finding.Message =
    |                          |- warning: static property 'useSingularParameter' is 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 'useSingularParameter' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
193 |     "replace the plural 'Parameters:' section with a singular inline 'Parameter' section"
194 |
/host/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 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/Rules/ValidateDocumentationComments.swift:195:26: warning: static property 'usePluralParameters' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
193 |     "replace the plural 'Parameters:' section with a singular inline 'Parameter' section"
194 |
195 |   fileprivate static let usePluralParameters: Finding.Message =
    |                          |- warning: static property 'usePluralParameters' is 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 'usePluralParameters' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
196 |     """
197 |     replace the singular inline 'Parameter' section with a plural 'Parameters:' section \
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:41:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
39 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
40 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
41 |   public struct Message:
   |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
42 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
43 |   {
[945/1004] Compiling SwiftFormat DocumentationComment.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[946/1004] Compiling SwiftFormat DocumentationCommentText.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[947/1004] Compiling SwiftFormat Finding+Convenience.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[948/1004] Compiling SwiftFormat FindingEmitter.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[949/1004] Compiling SwiftFormat FormatPipeline.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[950/1004] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[951/1004] Compiling SwiftFormat ImportsXCTestVisitor.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[952/1004] Compiling SwiftFormat LazySplitSequence.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[953/1004] Compiling SwiftFormat LintPipeline.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[954/1004] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[955/1004] Compiling SwiftFormat Parsing.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[956/1004] Compiling SwiftFormat Pipelines+Generated.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[994/1006] Wrapping AST for SwiftFormat for debugging
[997/1037] Emitting module _GenerateSwiftFormat
[998/1037] Compiling _SwiftFormatTestSupport Configuration+Testing.swift
[999/1037] Emitting module _SwiftFormatTestSupport
[1000/1039] Compiling _GenerateSwiftFormat FileGenerator.swift
[1001/1051] Compiling _GenerateSwiftFormat RuleRegistryGenerator.swift
[1002/1055] Compiling _GenerateSwiftFormat RuleNameCacheGenerator.swift
[1003/1055] Compiling _SwiftFormatTestSupport Parsing.swift
[1004/1055] Compiling _GenerateSwiftFormat RuleDocumentationGenerator.swift
[1005/1055] Compiling _GenerateSwiftFormat GenerateSwiftFormatPaths.swift
[1006/1055] Compiling _GenerateSwiftFormat PipelineGenerator.swift
[1007/1055] Compiling _SwiftFormatTestSupport FindingSpec.swift
[1008/1055] Compiling _SwiftFormatTestSupport MarkedText.swift
[1009/1055] Compiling swift_format DumpConfiguration.swift
[1010/1055] Compiling swift_format Format.swift
[1011/1055] Compiling swift_format LintFrontend.swift
[1012/1057] Compiling _GenerateSwiftFormat Syntax+Convenience.swift
[1013/1057] Compiling swift_format FileHandleTextOutputStream.swift
[1014/1057] Compiling swift_format StderrDiagnosticPrinter.swift
[1015/1057] Compiling swift_format Diagnostic.swift
[1016/1057] Compiling swift_format DiagnosticsEngine.swift
[1017/1057] Compiling _GenerateSwiftFormat RuleCollector.swift
[1018/1058] Compiling _SwiftFormatTestSupport DiagnosingTestCase.swift
[1020/1059] Emitting module swift_format
/host/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: """
/host/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."
/host/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."
/host/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",
[1022/1061] Compiling swift_format PerformanceMeasurement.swift
/host/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",
[1023/1061] Compiling swift_format SwiftFormatCommand.swift
/host/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",
[1028/1061] Compiling swift_format PrintVersion.swift
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
/host/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; this is an error in the Swift 6 language mode
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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
[1029/1061] Compiling swift_format ConfigurationOptions.swift
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
/host/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; this is an error in the Swift 6 language mode
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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
[1030/1061] Compiling swift_format Lint.swift
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
/host/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; this is an error in the Swift 6 language mode
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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
[1031/1061] Emitting module swift_format
/host/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: """
/host/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."
/host/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."
/host/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",
[1031/1061] Wrapping AST for _GenerateSwiftFormat for debugging
/host/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",
/host/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",
[1035/1061] Compiling swift_format TTY.swift
[1036/1061] Compiling swift_format VersionOptions.swift
/host/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: """
/host/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."
/host/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: """
/host/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."
[1044/1063] Compiling generate_swift_format main.swift
[1045/1063] Emitting module generate_swift_format
[1046/1063] Compiling swift_format LintFormatOptions.swift
/host/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: """
/host/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."
[1047/1063] Compiling swift_format ConfigurationLoader.swift
/host/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: """
/host/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."
[1048/1063] Compiling swift_format FormatFrontend.swift
/host/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."
[1049/1063] Compiling swift_format Frontend.swift
/host/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."
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
/host/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; this is an error in the Swift 6 language mode
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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
/host/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; this is an error in the Swift 6 language mode
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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:294:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
/host/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; this is an error in the Swift 6 language mode
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; this is an error in the Swift 6 language mode
295 |       }
296 |     } else {
/host/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."
/host/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."
[1057/1066] Wrapping AST for swift-format for debugging
[1058/1066] Write Objects.LinkFileList
[1059/1066] Wrapping AST for generate-swift-format for debugging
[1060/1066] Write Objects.LinkFileList
[1061/1066] Wrapping AST for swift-format for debugging
[1062/1066] Write Objects.LinkFileList
[1063/1066] Linking generate-swift-format
[1064/1066] Linking swift-format
[1065/1066] Linking swift-format-tool
Build complete! (175.38s)
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/swiftlang/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" : "/host/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" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "_GenerateSwiftFormat"
      ],
      "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" : "_GenerateSwiftFormat",
      "module_type" : "SwiftTarget",
      "name" : "_GenerateSwiftFormat",
      "path" : "Sources/_GenerateSwiftFormat",
      "product_memberships" : [
        "generate-swift-format"
      ],
      "sources" : [
        "FileGenerator.swift",
        "GenerateSwiftFormatPaths.swift",
        "PipelineGenerator.swift",
        "RuleCollector.swift",
        "RuleDocumentationGenerator.swift",
        "RuleNameCacheGenerator.swift",
        "RuleRegistryGenerator.swift",
        "Syntax+Convenience.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat"
      ],
      "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",
        "Utilities/GeneratedFilesValidityTests.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat",
        "_SwiftFormatTestSupport",
        "_GenerateSwiftFormat"
      ],
      "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"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:99ea6d26ace67c023f359493a2ac553a612b92a7f2dee009657225f46f43aa0e
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.