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

Failed to build SwiftFormat, reference 0.57.2 (b83a8f), with Swift 6.1 for tvOS using Xcode 16.3 on 15 Jul 2025 07:41:24 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SwiftFormat-Package -destination generic/platform=tvOS

Build Log

private var configCache = [URL: [String: String]]()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:314:13: note: convert 'configCache' to a 'let' constant to make 'Sendable' shared state immutable
private var configCache = [URL: [String: String]]()
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:314:13: note: add '@MainActor' to make var 'configCache' part of global actor 'MainActor'
private var configCache = [URL: [String: String]]()
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:314:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var configCache = [URL: [String: String]]()
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:139:13: warning: capture of 'completionBlocks' with non-sendable type '[() throws -> Void]' in a '@Sendable' closure
            completionBlocks.append(block)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:139:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionBlocks.append(block)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:139:37: warning: capture of 'block' with non-sendable type '() throws -> Void' in a '@Sendable' closure
            completionBlocks.append(block)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:139:37: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            completionBlocks.append(block)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:139:13: warning: mutation of captured var 'completionBlocks' in concurrently-executing code
            completionBlocks.append(block)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:240:21: warning: capture of 'enumerate(inputURL:outputURL:options:)' with non-sendable type '(URL, URL?, Options) -> ()' in a '@Sendable' closure
                    enumerate(inputURL: url, outputURL: outputURL, options: options)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:240:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    enumerate(inputURL: url, outputURL: outputURL, options: options)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:240:77: warning: capture of 'options' with non-sendable type 'Options' in a '@Sendable' closure
                    enumerate(inputURL: url, outputURL: outputURL, options: options)
                                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Options.swift:1157:15: note: consider making struct 'Options' conform to the 'Sendable' protocol
public struct Options {
              ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:194:10: warning: concurrently-executed local function 'enumerate(inputURL:outputURL:options:)' must be marked as '@Sendable'
    func enumerate(inputURL: URL,
         ^
    @Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:247:23: warning: capture of 'baseOptions' with non-sendable type 'Options' in a '@Sendable' closure
        var options = baseOptions
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Options.swift:1157:15: note: consider making struct 'Options' conform to the 'Sendable' protocol
public struct Options {
              ^
                      : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:253:62: warning: capture of 'logger' with non-sendable type 'Logger?' (aka 'Optional<(String) -> ()>') in a '@Sendable' closure
            try gatherOptions(&options, for: inputURL, with: logger)
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:253:62: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            try gatherOptions(&options, for: inputURL, with: logger)
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:254:58: warning: capture of 'resolveInputURL(_:options:)' with non-sendable type '(URL, Options) -> (URL, URLResourceValues, Options)?' in a '@Sendable' closure
            guard let (resolvedURL, resourceValues, _) = resolveInputURL(inputURL, options: options) else {
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:254:58: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            guard let (resolvedURL, resourceValues, _) = resolveInputURL(inputURL, options: options) else {
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:265:13: warning: capture of 'onComplete' with non-sendable type '(@escaping () throws -> Void) -> ()' in a '@Sendable' closure
            onComplete { throw error }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:265:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            onComplete { throw error }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:268:9: warning: capture of 'enumerate(inputURL:outputURL:options:)' with non-sendable type '(URL, URL?, Options) -> ()' in a '@Sendable' closure
        enumerate(inputURL: inputURL, outputURL: outputURL, options: options)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:268:9: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        enumerate(inputURL: inputURL, outputURL: outputURL, options: options)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:145:10: warning: concurrently-executed local function 'resolveInputURL(_:options:)' must be marked as '@Sendable'
    func resolveInputURL(_ inputURL: URL, options: Options) -> (URL, URLResourceValues, Options)? {
         ^
    @Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:137:10: warning: concurrently-executed local function 'onComplete' must be marked as '@Sendable'
    func onComplete(_ block: @escaping () throws -> Void) {
         ^
    @Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:352:33: warning: reference to captured var 'args' in concurrently-executing code
        configCache[inputURL] = args
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:572:17: warning: capture of 'rule' with non-sendable type 'FormatRule' in a '@Sendable' closure
                rule.apply(with: formatter)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftFormat.swift:572:34: warning: capture of 'formatter' with non-sendable type 'Formatter' in a '@Sendable' closure
                rule.apply(with: formatter)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Formatter.swift:40:14: note: class 'Formatter' does not conform to the 'Sendable' protocol
public class Formatter: NSObject {
             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Tokenizer.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/XMLReporter.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ RedundantBreak.swift,\ RedundantClosure.swift,\ RedundantEquatable.swift,\ RedundantExtensionACL.swift,\ RedundantFileprivate.swift,\ RedundantGet.swift,\ RedundantInit.swift,\ RedundantInternal.swift,\ RedundantLet.swift,\ RedundantLetError.swift,\ RedundantMemberwiseInit.swift,\ RedundantNilInit.swift,\ RedundantObjc.swift,\ RedundantOptionalBinding.swift,\ RedundantParens.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBreak.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantClosure.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantEquatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantExtensionACL.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantFileprivate.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantGet.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInit.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInternal.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLet.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLetError.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantMemberwiseInit.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantNilInit.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantObjc.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantOptionalBinding.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantParens.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBreak.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBreak.swift:13:16: warning: static property 'redundantBreak' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantBreak = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBreak.swift:13:16: note: add '@MainActor' to make static property 'redundantBreak' part of global actor 'MainActor'
    static let redundantBreak = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBreak.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantBreak = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantClosure.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantClosure.swift:12:16: warning: static property 'redundantClosure' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantClosure = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantClosure.swift:12:16: note: add '@MainActor' to make static property 'redundantClosure' part of global actor 'MainActor'
    static let redundantClosure = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantClosure.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantClosure = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantEquatable.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantEquatable.swift:5:16: warning: static property 'redundantEquatable' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantEquatable = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantEquatable.swift:5:16: note: add '@MainActor' to make static property 'redundantEquatable' part of global actor 'MainActor'
    static let redundantEquatable = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantEquatable.swift:5:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantEquatable = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantExtensionACL.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantExtensionACL.swift:13:16: warning: static property 'redundantExtensionACL' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantExtensionACL = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantExtensionACL.swift:13:16: note: add '@MainActor' to make static property 'redundantExtensionACL' part of global actor 'MainActor'
    static let redundantExtensionACL = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantExtensionACL.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantExtensionACL = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantFileprivate.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantFileprivate.swift:13:16: warning: static property 'redundantFileprivate' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantFileprivate = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantFileprivate.swift:13:16: note: add '@MainActor' to make static property 'redundantFileprivate' part of global actor 'MainActor'
    static let redundantFileprivate = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantFileprivate.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantFileprivate = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantGet.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantGet.swift:13:16: warning: static property 'redundantGet' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantGet = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantGet.swift:13:16: note: add '@MainActor' to make static property 'redundantGet' part of global actor 'MainActor'
    static let redundantGet = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantGet.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantGet = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInit.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInit.swift:13:16: warning: static property 'redundantInit' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantInit = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInit.swift:13:16: note: add '@MainActor' to make static property 'redundantInit' part of global actor 'MainActor'
    static let redundantInit = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInit.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantInit = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInternal.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInternal.swift:12:16: warning: static property 'redundantInternal' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantInternal = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInternal.swift:12:16: note: add '@MainActor' to make static property 'redundantInternal' part of global actor 'MainActor'
    static let redundantInternal = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantInternal.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantInternal = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLet.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLet.swift:13:16: warning: static property 'redundantLet' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantLet = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLet.swift:13:16: note: add '@MainActor' to make static property 'redundantLet' part of global actor 'MainActor'
    static let redundantLet = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLet.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantLet = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLetError.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLetError.swift:13:16: warning: static property 'redundantLetError' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantLetError = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLetError.swift:13:16: note: add '@MainActor' to make static property 'redundantLetError' part of global actor 'MainActor'
    static let redundantLetError = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantLetError.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantLetError = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantMemberwiseInit.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantMemberwiseInit.swift:13:16: warning: static property 'redundantMemberwiseInit' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantMemberwiseInit = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantMemberwiseInit.swift:13:16: note: add '@MainActor' to make static property 'redundantMemberwiseInit' part of global actor 'MainActor'
    static let redundantMemberwiseInit = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantMemberwiseInit.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantMemberwiseInit = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantNilInit.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantNilInit.swift:13:16: warning: static property 'redundantNilInit' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantNilInit = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantNilInit.swift:13:16: note: add '@MainActor' to make static property 'redundantNilInit' part of global actor 'MainActor'
    static let redundantNilInit = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantNilInit.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantNilInit = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantObjc.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantObjc.swift:13:16: warning: static property 'redundantObjc' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantObjc = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantObjc.swift:13:16: note: add '@MainActor' to make static property 'redundantObjc' part of global actor 'MainActor'
    static let redundantObjc = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantObjc.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantObjc = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantOptionalBinding.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantOptionalBinding.swift:12:16: warning: static property 'redundantOptionalBinding' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantOptionalBinding = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantOptionalBinding.swift:12:16: note: add '@MainActor' to make static property 'redundantOptionalBinding' part of global actor 'MainActor'
    static let redundantOptionalBinding = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantOptionalBinding.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantOptionalBinding = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantParens.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantParens.swift:13:16: warning: static property 'redundantParens' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantParens = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantParens.swift:13:16: note: add '@MainActor' to make static property 'redundantParens' part of global actor 'MainActor'
    static let redundantParens = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantParens.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantParens = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ SortTypealiases.swift,\ SortedImports.swift,\ SortedSwitchCases.swift,\ SpaceAroundBraces.swift,\ SpaceAroundBrackets.swift,\ SpaceAroundComments.swift,\ SpaceAroundGenerics.swift,\ SpaceAroundOperators.swift,\ SpaceAroundParens.swift,\ SpaceInsideBraces.swift,\ SpaceInsideBrackets.swift,\ SpaceInsideComments.swift,\ SpaceInsideGenerics.swift,\ SpaceInsideParens.swift,\ Specifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SortTypealiases.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedImports.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedSwitchCases.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBraces.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBrackets.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundComments.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundGenerics.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundOperators.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundParens.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBraces.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBrackets.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideComments.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideGenerics.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideParens.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/Specifiers.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SortTypealiases.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SortTypealiases.swift:12:16: warning: static property 'sortTypealiases' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sortTypealiases = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SortTypealiases.swift:12:16: note: add '@MainActor' to make static property 'sortTypealiases' part of global actor 'MainActor'
    static let sortTypealiases = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SortTypealiases.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sortTypealiases = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedImports.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedImports.swift:13:16: warning: static property 'sortedImports' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sortedImports = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedImports.swift:13:16: note: add '@MainActor' to make static property 'sortedImports' part of global actor 'MainActor'
    static let sortedImports = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedImports.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sortedImports = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedSwitchCases.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedSwitchCases.swift:13:16: warning: static property 'sortedSwitchCases' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sortedSwitchCases = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedSwitchCases.swift:13:16: note: add '@MainActor' to make static property 'sortedSwitchCases' part of global actor 'MainActor'
    static let sortedSwitchCases = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SortedSwitchCases.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sortedSwitchCases = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBraces.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBraces.swift:14:16: warning: static property 'spaceAroundBraces' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceAroundBraces = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBraces.swift:14:16: note: add '@MainActor' to make static property 'spaceAroundBraces' part of global actor 'MainActor'
    static let spaceAroundBraces = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBraces.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceAroundBraces = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBrackets.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBrackets.swift:19:16: warning: static property 'spaceAroundBrackets' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceAroundBrackets = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBrackets.swift:19:16: note: add '@MainActor' to make static property 'spaceAroundBrackets' part of global actor 'MainActor'
    static let spaceAroundBrackets = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundBrackets.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceAroundBrackets = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundComments.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundComments.swift:13:16: warning: static property 'spaceAroundComments' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceAroundComments = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundComments.swift:13:16: note: add '@MainActor' to make static property 'spaceAroundComments' part of global actor 'MainActor'
    static let spaceAroundComments = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundComments.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceAroundComments = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundGenerics.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundGenerics.swift:13:16: warning: static property 'spaceAroundGenerics' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceAroundGenerics = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundGenerics.swift:13:16: note: add '@MainActor' to make static property 'spaceAroundGenerics' part of global actor 'MainActor'
    static let spaceAroundGenerics = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundGenerics.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceAroundGenerics = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundOperators.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundOperators.swift:18:16: warning: static property 'spaceAroundOperators' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceAroundOperators = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundOperators.swift:18:16: note: add '@MainActor' to make static property 'spaceAroundOperators' part of global actor 'MainActor'
    static let spaceAroundOperators = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundOperators.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceAroundOperators = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundParens.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundParens.swift:20:16: warning: static property 'spaceAroundParens' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceAroundParens = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundParens.swift:20:16: note: add '@MainActor' to make static property 'spaceAroundParens' part of global actor 'MainActor'
    static let spaceAroundParens = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceAroundParens.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceAroundParens = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBraces.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBraces.swift:13:16: warning: static property 'spaceInsideBraces' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceInsideBraces = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBraces.swift:13:16: note: add '@MainActor' to make static property 'spaceInsideBraces' part of global actor 'MainActor'
    static let spaceInsideBraces = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBraces.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceInsideBraces = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBrackets.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBrackets.swift:13:16: warning: static property 'spaceInsideBrackets' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceInsideBrackets = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBrackets.swift:13:16: note: add '@MainActor' to make static property 'spaceInsideBrackets' part of global actor 'MainActor'
    static let spaceInsideBrackets = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideBrackets.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceInsideBrackets = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideComments.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideComments.swift:14:16: warning: static property 'spaceInsideComments' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceInsideComments = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideComments.swift:14:16: note: add '@MainActor' to make static property 'spaceInsideComments' part of global actor 'MainActor'
    static let spaceInsideComments = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideComments.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceInsideComments = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideGenerics.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideGenerics.swift:13:16: warning: static property 'spaceInsideGenerics' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceInsideGenerics = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideGenerics.swift:13:16: note: add '@MainActor' to make static property 'spaceInsideGenerics' part of global actor 'MainActor'
    static let spaceInsideGenerics = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideGenerics.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceInsideGenerics = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideParens.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideParens.swift:13:16: warning: static property 'spaceInsideParens' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let spaceInsideParens = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideParens.swift:13:16: note: add '@MainActor' to make static property 'spaceInsideParens' part of global actor 'MainActor'
    static let spaceInsideParens = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SpaceInsideParens.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let spaceInsideParens = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/Specifiers.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/Specifiers.swift:13:16: warning: static property 'specifiers' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let specifiers = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Specifiers.swift:13:16: note: add '@MainActor' to make static property 'specifiers' part of global actor 'MainActor'
    static let specifiers = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Specifiers.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let specifiers = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ MarkTypes.swift,\ ModifierOrder.swift,\ ModifiersOnSameLine.swift,\ NoExplicitOwnership.swift,\ NoGuardInTests.swift,\ NumberFormatting.swift,\ OpaqueGenericParameters.swift,\ OrganizeDeclarations.swift,\ PreferCountWhere.swift,\ PreferForLoop.swift,\ PreferKeyPath.swift,\ PreferSwiftTesting.swift,\ PrivateStateVariables.swift,\ PropertyTypes.swift,\ RedundantBackticks.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/MarkTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifierOrder.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifiersOnSameLine.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/NoExplicitOwnership.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/NoGuardInTests.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/NumberFormatting.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/OpaqueGenericParameters.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/OrganizeDeclarations.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferCountWhere.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferForLoop.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferKeyPath.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferSwiftTesting.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/PrivateStateVariables.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/PropertyTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBackticks.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/MarkTypes.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/MarkTypes.swift:12:16: warning: static property 'markTypes' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let markTypes = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/MarkTypes.swift:12:16: note: add '@MainActor' to make static property 'markTypes' part of global actor 'MainActor'
    static let markTypes = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/MarkTypes.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let markTypes = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifierOrder.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifierOrder.swift:13:16: warning: static property 'modifierOrder' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let modifierOrder = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifierOrder.swift:13:16: note: add '@MainActor' to make static property 'modifierOrder' part of global actor 'MainActor'
    static let modifierOrder = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifierOrder.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let modifierOrder = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifiersOnSameLine.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifiersOnSameLine.swift:13:16: warning: static property 'modifiersOnSameLine' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let modifiersOnSameLine = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifiersOnSameLine.swift:13:16: note: add '@MainActor' to make static property 'modifiersOnSameLine' part of global actor 'MainActor'
    static let modifiersOnSameLine = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ModifiersOnSameLine.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let modifiersOnSameLine = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/NoExplicitOwnership.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/NoExplicitOwnership.swift:12:16: warning: static property 'noExplicitOwnership' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let noExplicitOwnership = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/NoExplicitOwnership.swift:12:16: note: add '@MainActor' to make static property 'noExplicitOwnership' part of global actor 'MainActor'
    static let noExplicitOwnership = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/NoExplicitOwnership.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let noExplicitOwnership = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/NoGuardInTests.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/NoGuardInTests.swift:12:16: warning: static property 'noGuardInTests' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let noGuardInTests = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/NoGuardInTests.swift:12:16: note: add '@MainActor' to make static property 'noGuardInTests' part of global actor 'MainActor'
    static let noGuardInTests = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/NoGuardInTests.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let noGuardInTests = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/NumberFormatting.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/NumberFormatting.swift:13:16: warning: static property 'numberFormatting' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let numberFormatting = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/NumberFormatting.swift:13:16: note: add '@MainActor' to make static property 'numberFormatting' part of global actor 'MainActor'
    static let numberFormatting = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/NumberFormatting.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let numberFormatting = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/OpaqueGenericParameters.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/OpaqueGenericParameters.swift:12:16: warning: static property 'opaqueGenericParameters' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let opaqueGenericParameters = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/OpaqueGenericParameters.swift:12:16: note: add '@MainActor' to make static property 'opaqueGenericParameters' part of global actor 'MainActor'
    static let opaqueGenericParameters = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/OpaqueGenericParameters.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let opaqueGenericParameters = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/OrganizeDeclarations.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/OrganizeDeclarations.swift:12:16: warning: static property 'organizeDeclarations' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let organizeDeclarations = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/OrganizeDeclarations.swift:12:16: note: add '@MainActor' to make static property 'organizeDeclarations' part of global actor 'MainActor'
    static let organizeDeclarations = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/OrganizeDeclarations.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let organizeDeclarations = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferCountWhere.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferCountWhere.swift:12:16: warning: static property 'preferCountWhere' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let preferCountWhere = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferCountWhere.swift:12:16: note: add '@MainActor' to make static property 'preferCountWhere' part of global actor 'MainActor'
    static let preferCountWhere = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferCountWhere.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let preferCountWhere = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferForLoop.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferForLoop.swift:12:16: warning: static property 'preferForLoop' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let preferForLoop = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferForLoop.swift:12:16: note: add '@MainActor' to make static property 'preferForLoop' part of global actor 'MainActor'
    static let preferForLoop = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferForLoop.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let preferForLoop = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferKeyPath.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferKeyPath.swift:12:16: warning: static property 'preferKeyPath' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let preferKeyPath = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferKeyPath.swift:12:16: note: add '@MainActor' to make static property 'preferKeyPath' part of global actor 'MainActor'
    static let preferKeyPath = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferKeyPath.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let preferKeyPath = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferSwiftTesting.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferSwiftTesting.swift:12:16: warning: static property 'preferSwiftTesting' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let preferSwiftTesting = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferSwiftTesting.swift:12:16: note: add '@MainActor' to make static property 'preferSwiftTesting' part of global actor 'MainActor'
    static let preferSwiftTesting = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PreferSwiftTesting.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let preferSwiftTesting = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/PrivateStateVariables.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/PrivateStateVariables.swift:12:16: warning: static property 'privateStateVariables' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let privateStateVariables = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PrivateStateVariables.swift:12:16: note: add '@MainActor' to make static property 'privateStateVariables' part of global actor 'MainActor'
    static let privateStateVariables = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PrivateStateVariables.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let privateStateVariables = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/PropertyTypes.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/PropertyTypes.swift:12:16: warning: static property 'propertyTypes' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let propertyTypes = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PropertyTypes.swift:12:16: note: add '@MainActor' to make static property 'propertyTypes' part of global actor 'MainActor'
    static let propertyTypes = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/PropertyTypes.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let propertyTypes = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBackticks.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBackticks.swift:13:16: warning: static property 'redundantBackticks' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let redundantBackticks = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBackticks.swift:13:16: note: add '@MainActor' to make static property 'redundantBackticks' part of global actor 'MainActor'
    static let redundantBackticks = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/RedundantBackticks.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let redundantBackticks = FormatRule(
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ParsingHelpers.swift, Reporter.swift, RuleRegistry.generated.swift, Acronyms.swift, AndOperator.swift, AnyObjectProtocol.swift, ApplicationMain.swift, AssertionFailures.swift, BlankLineAfterImports.swift, BlankLineAfterSwitchCase.swift, BlankLinesAfterGuardStatements.swift, BlankLinesAroundMark.swift, BlankLinesAtEndOfScope.swift, BlankLinesAtStartOfScope.swift, BlankLinesBetweenChainedFunctions.swift (in target 'SwiftFormat' from project 'SwiftFormat')
SwiftCompile normal arm64 Compiling\ BlankLinesBetweenImports.swift,\ BlankLinesBetweenScopes.swift,\ BlockComments.swift,\ Braces.swift,\ ConditionalAssignment.swift,\ ConsecutiveBlankLines.swift,\ ConsecutiveSpaces.swift,\ ConsistentSwitchCaseSpacing.swift,\ DocComments.swift,\ DocCommentsBeforeModifiers.swift,\ DuplicateImports.swift,\ ElseOnSameLine.swift,\ EmptyBraces.swift,\ EmptyExtensions.swift,\ EnumNamespaces.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenImports.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenScopes.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlockComments.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/Braces.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/ConditionalAssignment.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveBlankLines.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveSpaces.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsistentSwitchCaseSpacing.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/DocComments.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/DocCommentsBeforeModifiers.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/DuplicateImports.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/ElseOnSameLine.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyBraces.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/EnumNamespaces.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenImports.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenImports.swift:13:16: warning: static property 'blankLinesBetweenImports' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blankLinesBetweenImports = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenImports.swift:13:16: note: add '@MainActor' to make static property 'blankLinesBetweenImports' part of global actor 'MainActor'
    static let blankLinesBetweenImports = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenImports.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blankLinesBetweenImports = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenScopes.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenScopes.swift:13:16: warning: static property 'blankLinesBetweenScopes' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blankLinesBetweenScopes = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenScopes.swift:13:16: note: add '@MainActor' to make static property 'blankLinesBetweenScopes' part of global actor 'MainActor'
    static let blankLinesBetweenScopes = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenScopes.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blankLinesBetweenScopes = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlockComments.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlockComments.swift:12:16: warning: static property 'blockComments' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blockComments = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlockComments.swift:12:16: note: add '@MainActor' to make static property 'blockComments' part of global actor 'MainActor'
    static let blockComments = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlockComments.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blockComments = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/Braces.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/Braces.swift:13:16: warning: static property 'braces' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let braces = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Braces.swift:13:16: note: add '@MainActor' to make static property 'braces' part of global actor 'MainActor'
    static let braces = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Braces.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let braces = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/ConditionalAssignment.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConditionalAssignment.swift:12:16: warning: static property 'conditionalAssignment' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let conditionalAssignment = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConditionalAssignment.swift:12:16: note: add '@MainActor' to make static property 'conditionalAssignment' part of global actor 'MainActor'
    static let conditionalAssignment = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConditionalAssignment.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let conditionalAssignment = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveBlankLines.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveBlankLines.swift:13:16: warning: static property 'consecutiveBlankLines' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let consecutiveBlankLines = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveBlankLines.swift:13:16: note: add '@MainActor' to make static property 'consecutiveBlankLines' part of global actor 'MainActor'
    static let consecutiveBlankLines = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveBlankLines.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let consecutiveBlankLines = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveSpaces.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveSpaces.swift:15:16: warning: static property 'consecutiveSpaces' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let consecutiveSpaces = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveSpaces.swift:15:16: note: add '@MainActor' to make static property 'consecutiveSpaces' part of global actor 'MainActor'
    static let consecutiveSpaces = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsecutiveSpaces.swift:15:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let consecutiveSpaces = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsistentSwitchCaseSpacing.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsistentSwitchCaseSpacing.swift:12:16: warning: static property 'consistentSwitchCaseSpacing' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let consistentSwitchCaseSpacing = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsistentSwitchCaseSpacing.swift:12:16: note: add '@MainActor' to make static property 'consistentSwitchCaseSpacing' part of global actor 'MainActor'
    static let consistentSwitchCaseSpacing = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ConsistentSwitchCaseSpacing.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let consistentSwitchCaseSpacing = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/DocComments.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/DocComments.swift:12:16: warning: static property 'docComments' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let docComments = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/DocComments.swift:12:16: note: add '@MainActor' to make static property 'docComments' part of global actor 'MainActor'
    static let docComments = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/DocComments.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let docComments = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/DocCommentsBeforeModifiers.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/DocCommentsBeforeModifiers.swift:12:16: warning: static property 'docCommentsBeforeModifiers' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let docCommentsBeforeModifiers = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/DocCommentsBeforeModifiers.swift:12:16: note: add '@MainActor' to make static property 'docCommentsBeforeModifiers' part of global actor 'MainActor'
    static let docCommentsBeforeModifiers = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/DocCommentsBeforeModifiers.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let docCommentsBeforeModifiers = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/DuplicateImports.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/DuplicateImports.swift:13:16: warning: static property 'duplicateImports' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let duplicateImports = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/DuplicateImports.swift:13:16: note: add '@MainActor' to make static property 'duplicateImports' part of global actor 'MainActor'
    static let duplicateImports = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/DuplicateImports.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let duplicateImports = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/ElseOnSameLine.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/ElseOnSameLine.swift:15:16: warning: static property 'elseOnSameLine' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let elseOnSameLine = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ElseOnSameLine.swift:15:16: note: add '@MainActor' to make static property 'elseOnSameLine' part of global actor 'MainActor'
    static let elseOnSameLine = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ElseOnSameLine.swift:15:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let elseOnSameLine = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyBraces.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyBraces.swift:13:16: warning: static property 'emptyBraces' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let emptyBraces = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyBraces.swift:13:16: note: add '@MainActor' to make static property 'emptyBraces' part of global actor 'MainActor'
    static let emptyBraces = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyBraces.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let emptyBraces = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyExtensions.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyExtensions.swift:13:16: warning: static property 'emptyExtensions' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let emptyExtensions = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyExtensions.swift:13:16: note: add '@MainActor' to make static property 'emptyExtensions' part of global actor 'MainActor'
    static let emptyExtensions = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/EmptyExtensions.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let emptyExtensions = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/EnumNamespaces.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/EnumNamespaces.swift:13:16: warning: static property 'enumNamespaces' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let enumNamespaces = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/EnumNamespaces.swift:13:16: note: add '@MainActor' to make static property 'enumNamespaces' part of global actor 'MainActor'
    static let enumNamespaces = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/EnumNamespaces.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let enumNamespaces = FormatRule(
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling SortTypealiases.swift, SortedImports.swift, SortedSwitchCases.swift, SpaceAroundBraces.swift, SpaceAroundBrackets.swift, SpaceAroundComments.swift, SpaceAroundGenerics.swift, SpaceAroundOperators.swift, SpaceAroundParens.swift, SpaceInsideBraces.swift, SpaceInsideBrackets.swift, SpaceInsideComments.swift, SpaceInsideGenerics.swift, SpaceInsideParens.swift, Specifiers.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftCompile normal arm64 Compiling\ ParsingHelpers.swift,\ Reporter.swift,\ RuleRegistry.generated.swift,\ Acronyms.swift,\ AndOperator.swift,\ AnyObjectProtocol.swift,\ ApplicationMain.swift,\ AssertionFailures.swift,\ BlankLineAfterImports.swift,\ BlankLineAfterSwitchCase.swift,\ BlankLinesAfterGuardStatements.swift,\ BlankLinesAroundMark.swift,\ BlankLinesAtEndOfScope.swift,\ BlankLinesAtStartOfScope.swift,\ BlankLinesBetweenChainedFunctions.swift /Users/admin/builder/spi-builder-workspace/Sources/ParsingHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/Reporter.swift /Users/admin/builder/spi-builder-workspace/Sources/RuleRegistry.generated.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/Acronyms.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/AndOperator.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/AnyObjectProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/ApplicationMain.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/AssertionFailures.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterImports.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterSwitchCase.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAfterGuardStatements.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAroundMark.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtEndOfScope.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtStartOfScope.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenChainedFunctions.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ParsingHelpers.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Reporter.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RuleRegistry.generated.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/RuleRegistry.generated.swift:11:5: warning: let 'ruleRegistry' is not concurrency-safe because non-'Sendable' type '[String : FormatRule]' may have shared mutable state; this is an error in the Swift 6 language mode
let ruleRegistry: [String: FormatRule] = [
    ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/RuleRegistry.generated.swift:11:5: note: add '@MainActor' to make let 'ruleRegistry' part of global actor 'MainActor'
let ruleRegistry: [String: FormatRule] = [
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/RuleRegistry.generated.swift:11:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ruleRegistry: [String: FormatRule] = [
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/Acronyms.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/Acronyms.swift:12:16: warning: static property 'acronyms' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let acronyms = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Acronyms.swift:12:16: note: add '@MainActor' to make static property 'acronyms' part of global actor 'MainActor'
    static let acronyms = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Acronyms.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let acronyms = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/AndOperator.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/AndOperator.swift:13:16: warning: static property 'andOperator' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let andOperator = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/AndOperator.swift:13:16: note: add '@MainActor' to make static property 'andOperator' part of global actor 'MainActor'
    static let andOperator = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/AndOperator.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let andOperator = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/AnyObjectProtocol.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/AnyObjectProtocol.swift:13:16: warning: static property 'anyObjectProtocol' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let anyObjectProtocol = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/AnyObjectProtocol.swift:13:16: note: add '@MainActor' to make static property 'anyObjectProtocol' part of global actor 'MainActor'
    static let anyObjectProtocol = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/AnyObjectProtocol.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let anyObjectProtocol = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/ApplicationMain.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/ApplicationMain.swift:14:16: warning: static property 'applicationMain' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let applicationMain = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ApplicationMain.swift:14:16: note: add '@MainActor' to make static property 'applicationMain' part of global actor 'MainActor'
    static let applicationMain = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ApplicationMain.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let applicationMain = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/AssertionFailures.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/AssertionFailures.swift:12:16: warning: static property 'assertionFailures' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let assertionFailures = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/AssertionFailures.swift:12:16: note: add '@MainActor' to make static property 'assertionFailures' part of global actor 'MainActor'
    static let assertionFailures = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/AssertionFailures.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let assertionFailures = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterImports.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterImports.swift:13:16: warning: static property 'blankLineAfterImports' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blankLineAfterImports = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterImports.swift:13:16: note: add '@MainActor' to make static property 'blankLineAfterImports' part of global actor 'MainActor'
    static let blankLineAfterImports = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterImports.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blankLineAfterImports = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterSwitchCase.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterSwitchCase.swift:12:16: warning: static property 'blankLineAfterSwitchCase' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blankLineAfterSwitchCase = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterSwitchCase.swift:12:16: note: add '@MainActor' to make static property 'blankLineAfterSwitchCase' part of global actor 'MainActor'
    static let blankLineAfterSwitchCase = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLineAfterSwitchCase.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blankLineAfterSwitchCase = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAfterGuardStatements.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAfterGuardStatements.swift:7:16: warning: static property 'blankLinesAfterGuardStatements' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blankLinesAfterGuardStatements = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAfterGuardStatements.swift:7:16: note: add '@MainActor' to make static property 'blankLinesAfterGuardStatements' part of global actor 'MainActor'
    static let blankLinesAfterGuardStatements = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAfterGuardStatements.swift:7:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blankLinesAfterGuardStatements = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAroundMark.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAroundMark.swift:13:16: warning: static property 'blankLinesAroundMark' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blankLinesAroundMark = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAroundMark.swift:13:16: note: add '@MainActor' to make static property 'blankLinesAroundMark' part of global actor 'MainActor'
    static let blankLinesAroundMark = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAroundMark.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blankLinesAroundMark = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtEndOfScope.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtEndOfScope.swift:15:16: warning: static property 'blankLinesAtEndOfScope' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blankLinesAtEndOfScope = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtEndOfScope.swift:15:16: note: add '@MainActor' to make static property 'blankLinesAtEndOfScope' part of global actor 'MainActor'
    static let blankLinesAtEndOfScope = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtEndOfScope.swift:15:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blankLinesAtEndOfScope = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtStartOfScope.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtStartOfScope.swift:14:16: warning: static property 'blankLinesAtStartOfScope' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blankLinesAtStartOfScope = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtStartOfScope.swift:14:16: note: add '@MainActor' to make static property 'blankLinesAtStartOfScope' part of global actor 'MainActor'
    static let blankLinesAtStartOfScope = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesAtStartOfScope.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blankLinesAtStartOfScope = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenChainedFunctions.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenChainedFunctions.swift:13:16: warning: static property 'blankLinesBetweenChainedFunctions' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let blankLinesBetweenChainedFunctions = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenChainedFunctions.swift:13:16: note: add '@MainActor' to make static property 'blankLinesBetweenChainedFunctions' part of global actor 'MainActor'
    static let blankLinesBetweenChainedFunctions = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/BlankLinesBetweenChainedFunctions.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let blankLinesBetweenChainedFunctions = FormatRule(
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Arguments.swift, CommandLine.swift, Declaration.swift, DeclarationType.swift, EnumAssociable.swift, FormatRule.swift, Formatter.swift, FormattingHelpers.swift, GitFileInfo.swift, GithubActionsLogReporter.swift, Globs.swift, Inference.swift, JSONReporter.swift, OptionDescriptor.swift, Options.swift (in target 'SwiftFormat' from project 'SwiftFormat')
SwiftCompile normal arm64 Compiling\ StrongOutlets.swift,\ StrongifiedSelf.swift,\ SwiftTestingTestCaseNames.swift,\ ThrowingTests.swift,\ Todos.swift,\ TrailingClosures.swift,\ TrailingCommas.swift,\ TrailingSpace.swift,\ TypeSugar.swift,\ URLMacro.swift,\ UnusedArguments.swift,\ UnusedPrivateDeclarations.swift,\ Void.swift,\ Wrap.swift,\ WrapArguments.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongOutlets.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongifiedSelf.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/SwiftTestingTestCaseNames.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/ThrowingTests.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/Todos.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingClosures.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingCommas.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingSpace.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/TypeSugar.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/URLMacro.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedArguments.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedPrivateDeclarations.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/Void.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/Wrap.swift /Users/admin/builder/spi-builder-workspace/Sources/Rules/WrapArguments.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongOutlets.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongOutlets.swift:13:16: warning: static property 'strongOutlets' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let strongOutlets = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongOutlets.swift:13:16: note: add '@MainActor' to make static property 'strongOutlets' part of global actor 'MainActor'
    static let strongOutlets = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongOutlets.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let strongOutlets = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongifiedSelf.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongifiedSelf.swift:13:16: warning: static property 'strongifiedSelf' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let strongifiedSelf = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongifiedSelf.swift:13:16: note: add '@MainActor' to make static property 'strongifiedSelf' part of global actor 'MainActor'
    static let strongifiedSelf = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/StrongifiedSelf.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let strongifiedSelf = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/SwiftTestingTestCaseNames.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/SwiftTestingTestCaseNames.swift:5:16: warning: static property 'swiftTestingTestCaseNames' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let swiftTestingTestCaseNames = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SwiftTestingTestCaseNames.swift:5:16: note: add '@MainActor' to make static property 'swiftTestingTestCaseNames' part of global actor 'MainActor'
    static let swiftTestingTestCaseNames = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/SwiftTestingTestCaseNames.swift:5:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let swiftTestingTestCaseNames = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/ThrowingTests.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/ThrowingTests.swift:7:16: warning: static property 'throwingTests' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let throwingTests = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ThrowingTests.swift:7:16: note: add '@MainActor' to make static property 'throwingTests' part of global actor 'MainActor'
    static let throwingTests = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/ThrowingTests.swift:7:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let throwingTests = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/Todos.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/Todos.swift:13:16: warning: static property 'todos' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let todos = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Todos.swift:13:16: note: add '@MainActor' to make static property 'todos' part of global actor 'MainActor'
    static let todos = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Todos.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let todos = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingClosures.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingClosures.swift:13:16: warning: static property 'trailingClosures' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let trailingClosures = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingClosures.swift:13:16: note: add '@MainActor' to make static property 'trailingClosures' part of global actor 'MainActor'
    static let trailingClosures = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingClosures.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let trailingClosures = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingCommas.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingCommas.swift:12:16: warning: static property 'trailingCommas' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let trailingCommas = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingCommas.swift:12:16: note: add '@MainActor' to make static property 'trailingCommas' part of global actor 'MainActor'
    static let trailingCommas = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingCommas.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let trailingCommas = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingSpace.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingSpace.swift:14:16: warning: static property 'trailingSpace' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let trailingSpace = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingSpace.swift:14:16: note: add '@MainActor' to make static property 'trailingSpace' part of global actor 'MainActor'
    static let trailingSpace = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/TrailingSpace.swift:14:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let trailingSpace = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/TypeSugar.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/TypeSugar.swift:13:16: warning: static property 'typeSugar' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let typeSugar = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/TypeSugar.swift:13:16: note: add '@MainActor' to make static property 'typeSugar' part of global actor 'MainActor'
    static let typeSugar = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/TypeSugar.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let typeSugar = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/URLMacro.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/URLMacro.swift:13:16: warning: static property 'urlMacro' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let urlMacro = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/URLMacro.swift:13:16: note: add '@MainActor' to make static property 'urlMacro' part of global actor 'MainActor'
    static let urlMacro = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/URLMacro.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let urlMacro = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedArguments.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedArguments.swift:13:16: warning: static property 'unusedArguments' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unusedArguments = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedArguments.swift:13:16: note: add '@MainActor' to make static property 'unusedArguments' part of global actor 'MainActor'
    static let unusedArguments = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedArguments.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unusedArguments = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedPrivateDeclarations.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedPrivateDeclarations.swift:13:16: warning: static property 'unusedPrivateDeclarations' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let unusedPrivateDeclarations = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedPrivateDeclarations.swift:13:16: note: add '@MainActor' to make static property 'unusedPrivateDeclarations' part of global actor 'MainActor'
    static let unusedPrivateDeclarations = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/UnusedPrivateDeclarations.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let unusedPrivateDeclarations = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/Void.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/Void.swift:13:16: warning: static property 'void' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let void = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Void.swift:13:16: note: add '@MainActor' to make static property 'void' part of global actor 'MainActor'
    static let void = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Void.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let void = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/Wrap.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/Wrap.swift:12:16: warning: static property 'wrap' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wrap = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Wrap.swift:12:16: note: add '@MainActor' to make static property 'wrap' part of global actor 'MainActor'
    static let wrap = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/Wrap.swift:12:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wrap = FormatRule(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Rules/WrapArguments.swift (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Rules/WrapArguments.swift:13:16: warning: static property 'wrapArguments' is not concurrency-safe because non-'Sendable' type 'FormatRule' may have shared mutable state; this is an error in the Swift 6 language mode
    static let wrapArguments = FormatRule(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/FormatRule.swift:34:20: note: class 'FormatRule' does not conform to the 'Sendable' protocol
public final class FormatRule: Hashable, Comparable, CustomStringConvertible {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Rules/WrapArguments.swift:13:16: note: add '@MainActor' to make static property 'wrapArguments' part of global actor 'MainActor'
    static let wrapArguments = FormatRule(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Rules/WrapArguments.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let wrapArguments = FormatRule(
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling RedundantBreak.swift, RedundantClosure.swift, RedundantEquatable.swift, RedundantExtensionACL.swift, RedundantFileprivate.swift, RedundantGet.swift, RedundantInit.swift, RedundantInternal.swift, RedundantLet.swift, RedundantLetError.swift, RedundantMemberwiseInit.swift, RedundantNilInit.swift, RedundantObjc.swift, RedundantOptionalBinding.swift, RedundantParens.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftDriverJobDiscovery normal arm64 Compiling RedundantPattern.swift, RedundantProperty.swift, RedundantPublic.swift, RedundantRawValues.swift, RedundantReturn.swift, RedundantSelf.swift, RedundantStaticSelf.swift, RedundantType.swift, RedundantTypedThrows.swift, RedundantVoidReturnType.swift, Semicolons.swift, SinglePropertyPerLine.swift, SortDeclarations.swift, SortImports.swift, SortSwitchCases.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftDriverJobDiscovery normal arm64 Compiling WrapAttributes.swift, WrapConditionalBodies.swift, WrapEnumCases.swift, WrapLoopBodies.swift, WrapMultilineConditionalAssignment.swift, WrapMultilineFunctionChains.swift, WrapMultilineStatementBraces.swift, WrapSingleLineComments.swift, WrapSwitchCases.swift, YodaConditions.swift, SARIFReporter.swift, Singularize.swift, SwiftFormat.swift, Tokenizer.swift, XMLReporter.swift (in target 'SwiftFormat' from project 'SwiftFormat')
SwiftDriver\ Compilation SwiftFormat normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftFormat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftFormat -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftFormat.o normal (in target 'SwiftFormat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftFormat.o
SwiftDriverJobDiscovery normal arm64 Compiling MarkTypes.swift, ModifierOrder.swift, ModifiersOnSameLine.swift, NoExplicitOwnership.swift, NoGuardInTests.swift, NumberFormatting.swift, OpaqueGenericParameters.swift, OrganizeDeclarations.swift, PreferCountWhere.swift, PreferForLoop.swift, PreferKeyPath.swift, PreferSwiftTesting.swift, PrivateStateVariables.swift, PropertyTypes.swift, RedundantBackticks.swift (in target 'swiftformat' from project 'SwiftFormat')
ExtractAppIntentsMetadata (in target 'SwiftFormat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SwiftFormat --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.SwiftFormat --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftFormat.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftFormat.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/SwiftFormat.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/SwiftFormat.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-07-15 00:41:14.854 appintentsmetadataprocessor[757:4630] Starting appintentsmetadataprocessor export
2025-07-15 00:41:14.910 appintentsmetadataprocessor[757:4630] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling EnvironmentEntry.swift, ExtensionAccessControl.swift, FileHeader.swift, FileMacro.swift, GenericExtensions.swift, HeaderFileName.swift, HoistAwait.swift, HoistPatternLet.swift, HoistTry.swift, Indent.swift, InitCoderUnavailable.swift, IsEmpty.swift, LeadingDelimiters.swift, LinebreakAtEndOfFile.swift, Linebreaks.swift (in target 'swiftformat' from project 'SwiftFormat')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftFormat.o (in target 'SwiftFormat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftFormat.o
SwiftDriverJobDiscovery normal arm64 Compiling StrongOutlets.swift, StrongifiedSelf.swift, SwiftTestingTestCaseNames.swift, ThrowingTests.swift, Todos.swift, TrailingClosures.swift, TrailingCommas.swift, TrailingSpace.swift, TypeSugar.swift, URLMacro.swift, UnusedArguments.swift, UnusedPrivateDeclarations.swift, Void.swift, Wrap.swift, WrapArguments.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftDriverJobDiscovery normal arm64 Compiling BlankLinesBetweenImports.swift, BlankLinesBetweenScopes.swift, BlockComments.swift, Braces.swift, ConditionalAssignment.swift, ConsecutiveBlankLines.swift, ConsecutiveSpaces.swift, ConsistentSwitchCaseSpacing.swift, DocComments.swift, DocCommentsBeforeModifiers.swift, DuplicateImports.swift, ElseOnSameLine.swift, EmptyBraces.swift, EmptyExtensions.swift, EnumNamespaces.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftDriverJobDiscovery normal arm64 Emitting module for swiftformat (in target 'swiftformat' from project 'SwiftFormat')
SwiftDriver\ Compilation\ Requirements swiftformat normal arm64 com.apple.xcode.tools.swift.compiler (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name swiftformat -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/swiftformat.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.swiftmodule (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/swiftformat.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/swiftformat.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.abi.json (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/swiftformat.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/swiftformat.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.swiftdoc (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/swiftformat.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/swiftformat.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.swiftsourceinfo (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/swiftformat.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling WrapAttributes.swift, WrapConditionalBodies.swift, WrapEnumCases.swift, WrapLoopBodies.swift, WrapMultilineConditionalAssignment.swift, WrapMultilineFunctionChains.swift, WrapMultilineStatementBraces.swift, WrapSingleLineComments.swift, WrapSwitchCases.swift, YodaConditions.swift, SARIFReporter.swift, Singularize.swift, SwiftFormat.swift, Tokenizer.swift, XMLReporter.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftDriverJobDiscovery normal arm64 Compiling Arguments.swift, CommandLine.swift, Declaration.swift, DeclarationType.swift, EnumAssociable.swift, FormatRule.swift, Formatter.swift, FormattingHelpers.swift, GitFileInfo.swift, GithubActionsLogReporter.swift, Globs.swift, Inference.swift, JSONReporter.swift, OptionDescriptor.swift, Options.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftDriverJobDiscovery normal arm64 Compiling ParsingHelpers.swift, Reporter.swift, RuleRegistry.generated.swift, Acronyms.swift, AndOperator.swift, AnyObjectProtocol.swift, ApplicationMain.swift, AssertionFailures.swift, BlankLineAfterImports.swift, BlankLineAfterSwitchCase.swift, BlankLinesAfterGuardStatements.swift, BlankLinesAroundMark.swift, BlankLinesAtEndOfScope.swift, BlankLinesAtStartOfScope.swift, BlankLinesBetweenChainedFunctions.swift (in target 'swiftformat' from project 'SwiftFormat')
SwiftDriver\ Compilation swiftformat normal arm64 com.apple.xcode.tools.swift.compiler (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name swiftformat -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
error: unable to open dependencies file (/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/main.d) (in target 'swiftformat' from project 'SwiftFormat')
** BUILD FAILED **
The following build commands failed:
	SwiftDriver\ Compilation swiftformat normal arm64 com.apple.xcode.tools.swift.compiler (in target 'swiftformat' from project 'SwiftFormat')
	Building workspace spi-builder-workspace with scheme SwiftFormat-Package
(2 failures)
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
  SwiftFormat: /Users/admin/builder/spi-builder-workspace
resolved source packages: SwiftFormat
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftFormat",
  "name" : "SwiftFormat",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "swiftformat",
      "targets" : [
        "CommandLineTool"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "SwiftFormat",
      "targets" : [
        "SwiftFormat"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftFormatPlugin",
      "targets" : [
        "SwiftFormatPlugin"
      ],
      "type" : {
        "plugin" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftFormatTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFormatTests",
      "path" : "Tests",
      "sources" : [
        "ArgumentsTests.swift",
        "BadConfig/Test.swift",
        "CodeOrganizationTests.swift",
        "CommandLineTests.swift",
        "DeclarationV2Tests.swift",
        "EnumAssociableTests.swift",
        "FormatterTests.swift",
        "GlobsTests.swift",
        "InferenceTests.swift",
        "MetadataTests.swift",
        "OptionDescriptorTests.swift",
        "ParsingHelpersTests.swift",
        "ProjectFilePaths.swift",
        "ReporterTests.swift",
        "Rules/AcronymsTests.swift",
        "Rules/AndOperatorTests.swift",
        "Rules/AnyObjectProtocolTests.swift",
        "Rules/ApplicationMainTests.swift",
        "Rules/AssertionFailuresTests.swift",
        "Rules/BlankLineAfterImportsTests.swift",
        "Rules/BlankLineAfterSwitchCaseTests.swift",
        "Rules/BlankLinesAfterGuardStatementsTests.swift",
        "Rules/BlankLinesAroundMarkTests.swift",
        "Rules/BlankLinesAtEndOfScopeTests.swift",
        "Rules/BlankLinesAtStartOfScopeTests.swift",
        "Rules/BlankLinesBetweenChainedFunctionsTests.swift",
        "Rules/BlankLinesBetweenImportsTests.swift",
        "Rules/BlankLinesBetweenScopesTests.swift",
        "Rules/BlockCommentsTests.swift",
        "Rules/BracesTests.swift",
        "Rules/ConditionalAssignmentTests.swift",
        "Rules/ConsecutiveBlankLinesTests.swift",
        "Rules/ConsecutiveSpacesTests.swift",
        "Rules/ConsistentSwitchCaseSpacingTests.swift",
        "Rules/DocCommentsBeforeModifiersTests.swift",
        "Rules/DocCommentsTests.swift",
        "Rules/DuplicateImportsTests.swift",
        "Rules/ElseOnSameLineTests.swift",
        "Rules/EmptyBracesTests.swift",
        "Rules/EmptyExtensionsTests.swift",
        "Rules/EnumNamespacesTests.swift",
        "Rules/EnvironmentEntryTests.swift",
        "Rules/ExtensionAccessControlTests.swift",
        "Rules/FileHeaderTests.swift",
        "Rules/FileMacroTests.swift",
        "Rules/GenericExtensionsTests.swift",
        "Rules/HeaderFileNameTests.swift",
        "Rules/HoistAwaitTests.swift",
        "Rules/HoistPatternLetTests.swift",
        "Rules/HoistTryTests.swift",
        "Rules/IndentTests.swift",
        "Rules/InitCoderUnavailableTests.swift",
        "Rules/IsEmptyTests.swift",
        "Rules/LeadingDelimitersTests.swift",
        "Rules/LinebreakAtEndOfFileTests.swift",
        "Rules/LinebreaksTests.swift",
        "Rules/MarkTypesTests.swift",
        "Rules/ModifierOrderTests.swift",
        "Rules/ModifiersOnSameLineTests.swift",
        "Rules/NoExplicitOwnershipTests.swift",
        "Rules/NoGuardInTestsTests.swift",
        "Rules/NumberFormattingTests.swift",
        "Rules/OpaqueGenericParametersTests.swift",
        "Rules/OrganizeDeclarationsTests.swift",
        "Rules/PreferCountWhereTests.swift",
        "Rules/PreferForLoopTests.swift",
        "Rules/PreferKeyPathTests.swift",
        "Rules/PreferSwiftTestingTests.swift",
        "Rules/PrivateStateVariablesTests.swift",
        "Rules/PropertyTypesTests.swift",
        "Rules/RedundantBackticksTests.swift",
        "Rules/RedundantBreakTests.swift",
        "Rules/RedundantClosureTests.swift",
        "Rules/RedundantEquatableTests.swift",
        "Rules/RedundantExtensionACLTests.swift",
        "Rules/RedundantFileprivateTests.swift",
        "Rules/RedundantGetTests.swift",
        "Rules/RedundantInitTests.swift",
        "Rules/RedundantInternalTests.swift",
        "Rules/RedundantLetErrorTests.swift",
        "Rules/RedundantLetTests.swift",
        "Rules/RedundantMemberwiseInitTests.swift",
        "Rules/RedundantNilInitTests.swift",
        "Rules/RedundantObjcTests.swift",
        "Rules/RedundantOptionalBindingTests.swift",
        "Rules/RedundantParensTests.swift",
        "Rules/RedundantPatternTests.swift",
        "Rules/RedundantPropertyTests.swift",
        "Rules/RedundantPublicTests.swift",
        "Rules/RedundantRawValuesTests.swift",
        "Rules/RedundantReturnTests.swift",
        "Rules/RedundantSelfTests.swift",
        "Rules/RedundantStaticSelfTests.swift",
        "Rules/RedundantTypeTests.swift",
        "Rules/RedundantTypedThrowsTests.swift",
        "Rules/RedundantVoidReturnTypeTests.swift",
        "Rules/SemicolonsTests.swift",
        "Rules/SinglePropertyPerLineTests.swift",
        "Rules/SortDeclarationsTests.swift",
        "Rules/SortImportsTests.swift",
        "Rules/SortSwitchCasesTests.swift",
        "Rules/SortTypealiasesTests.swift",
        "Rules/SpaceAroundBracesTests.swift",
        "Rules/SpaceAroundBracketsTests.swift",
        "Rules/SpaceAroundCommentsTests.swift",
        "Rules/SpaceAroundGenericsTests.swift",
        "Rules/SpaceAroundOperatorsTests.swift",
        "Rules/SpaceAroundParensTests.swift",
        "Rules/SpaceInsideBracesTests.swift",
        "Rules/SpaceInsideBracketsTests.swift",
        "Rules/SpaceInsideCommentsTests.swift",
        "Rules/SpaceInsideGenericsTests.swift",
        "Rules/SpaceInsideParensTests.swift",
        "Rules/StrongOutletsTests.swift",
        "Rules/StrongifiedSelfTests.swift",
        "Rules/SwiftTestingTestCaseNamesTests.swift",
        "Rules/ThrowingTestsTests.swift",
        "Rules/TodosTests.swift",
        "Rules/TrailingClosuresTests.swift",
        "Rules/TrailingCommasTests.swift",
        "Rules/TrailingSpaceTests.swift",
        "Rules/TypeSugarTests.swift",
        "Rules/URLMacroTests.swift",
        "Rules/UnusedArgumentsTests.swift",
        "Rules/UnusedPrivateDeclarationsTests.swift",
        "Rules/VoidTests.swift",
        "Rules/WrapArgumentsTests.swift",
        "Rules/WrapAttributesTests.swift",
        "Rules/WrapConditionalBodiesTests.swift",
        "Rules/WrapEnumCasesTests.swift",
        "Rules/WrapLoopBodiesTests.swift",
        "Rules/WrapMultilineConditionalAssignmentTests.swift",
        "Rules/WrapMultilineFunctionChainsTests.swift",
        "Rules/WrapMultilineStatementBracesTests.swift",
        "Rules/WrapSingleLineCommentsTests.swift",
        "Rules/WrapSwitchCasesTests.swift",
        "Rules/WrapTests.swift",
        "Rules/YodaConditionsTests.swift",
        "SingularizeTests.swift",
        "SwiftFormatTests.swift",
        "TokenizerTests.swift",
        "VersionTests.swift",
        "XCTestCase+testFormatting.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftFormatPlugin",
      "module_type" : "PluginTarget",
      "name" : "SwiftFormatPlugin",
      "path" : "Plugins/SwiftFormatPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Formats Swift source files using SwiftFormat",
          "type" : "custom",
          "verb" : "swiftformat"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "This command reformats source files",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "SwiftFormatPlugin"
      ],
      "sources" : [
        "Shared/CommandPlugin+Extension.swift",
        "Shared/PluginToolProviding.swift",
        "SwiftFormatPlugin.swift",
        "SwiftFormatPluginXcode.swift"
      ],
      "target_dependencies" : [
        "CommandLineTool"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "SwiftFormat",
      "module_type" : "SwiftTarget",
      "name" : "SwiftFormat",
      "path" : "Sources",
      "product_memberships" : [
        "swiftformat",
        "SwiftFormat",
        "SwiftFormatPlugin"
      ],
      "sources" : [
        "Arguments.swift",
        "CommandLine.swift",
        "Declaration.swift",
        "DeclarationType.swift",
        "EnumAssociable.swift",
        "FormatRule.swift",
        "Formatter.swift",
        "FormattingHelpers.swift",
        "GitFileInfo.swift",
        "GithubActionsLogReporter.swift",
        "Globs.swift",
        "Inference.swift",
        "JSONReporter.swift",
        "OptionDescriptor.swift",
        "Options.swift",
        "ParsingHelpers.swift",
        "Reporter.swift",
        "RuleRegistry.generated.swift",
        "Rules/Acronyms.swift",
        "Rules/AndOperator.swift",
        "Rules/AnyObjectProtocol.swift",
        "Rules/ApplicationMain.swift",
        "Rules/AssertionFailures.swift",
        "Rules/BlankLineAfterImports.swift",
        "Rules/BlankLineAfterSwitchCase.swift",
        "Rules/BlankLinesAfterGuardStatements.swift",
        "Rules/BlankLinesAroundMark.swift",
        "Rules/BlankLinesAtEndOfScope.swift",
        "Rules/BlankLinesAtStartOfScope.swift",
        "Rules/BlankLinesBetweenChainedFunctions.swift",
        "Rules/BlankLinesBetweenImports.swift",
        "Rules/BlankLinesBetweenScopes.swift",
        "Rules/BlockComments.swift",
        "Rules/Braces.swift",
        "Rules/ConditionalAssignment.swift",
        "Rules/ConsecutiveBlankLines.swift",
        "Rules/ConsecutiveSpaces.swift",
        "Rules/ConsistentSwitchCaseSpacing.swift",
        "Rules/DocComments.swift",
        "Rules/DocCommentsBeforeModifiers.swift",
        "Rules/DuplicateImports.swift",
        "Rules/ElseOnSameLine.swift",
        "Rules/EmptyBraces.swift",
        "Rules/EmptyExtensions.swift",
        "Rules/EnumNamespaces.swift",
        "Rules/EnvironmentEntry.swift",
        "Rules/ExtensionAccessControl.swift",
        "Rules/FileHeader.swift",
        "Rules/FileMacro.swift",
        "Rules/GenericExtensions.swift",
        "Rules/HeaderFileName.swift",
        "Rules/HoistAwait.swift",
        "Rules/HoistPatternLet.swift",
        "Rules/HoistTry.swift",
        "Rules/Indent.swift",
        "Rules/InitCoderUnavailable.swift",
        "Rules/IsEmpty.swift",
        "Rules/LeadingDelimiters.swift",
        "Rules/LinebreakAtEndOfFile.swift",
        "Rules/Linebreaks.swift",
        "Rules/MarkTypes.swift",
        "Rules/ModifierOrder.swift",
        "Rules/ModifiersOnSameLine.swift",
        "Rules/NoExplicitOwnership.swift",
        "Rules/NoGuardInTests.swift",
        "Rules/NumberFormatting.swift",
        "Rules/OpaqueGenericParameters.swift",
        "Rules/OrganizeDeclarations.swift",
        "Rules/PreferCountWhere.swift",
        "Rules/PreferForLoop.swift",
        "Rules/PreferKeyPath.swift",
        "Rules/PreferSwiftTesting.swift",
        "Rules/PrivateStateVariables.swift",
        "Rules/PropertyTypes.swift",
        "Rules/RedundantBackticks.swift",
        "Rules/RedundantBreak.swift",
        "Rules/RedundantClosure.swift",
        "Rules/RedundantEquatable.swift",
        "Rules/RedundantExtensionACL.swift",
        "Rules/RedundantFileprivate.swift",
        "Rules/RedundantGet.swift",
        "Rules/RedundantInit.swift",
        "Rules/RedundantInternal.swift",
        "Rules/RedundantLet.swift",
        "Rules/RedundantLetError.swift",
        "Rules/RedundantMemberwiseInit.swift",
        "Rules/RedundantNilInit.swift",
        "Rules/RedundantObjc.swift",
        "Rules/RedundantOptionalBinding.swift",
        "Rules/RedundantParens.swift",
        "Rules/RedundantPattern.swift",
        "Rules/RedundantProperty.swift",
        "Rules/RedundantPublic.swift",
        "Rules/RedundantRawValues.swift",
        "Rules/RedundantReturn.swift",
        "Rules/RedundantSelf.swift",
        "Rules/RedundantStaticSelf.swift",
        "Rules/RedundantType.swift",
        "Rules/RedundantTypedThrows.swift",
        "Rules/RedundantVoidReturnType.swift",
        "Rules/Semicolons.swift",
        "Rules/SinglePropertyPerLine.swift",
        "Rules/SortDeclarations.swift",
        "Rules/SortImports.swift",
        "Rules/SortSwitchCases.swift",
        "Rules/SortTypealiases.swift",
        "Rules/SortedImports.swift",
        "Rules/SortedSwitchCases.swift",
        "Rules/SpaceAroundBraces.swift",
        "Rules/SpaceAroundBrackets.swift",
        "Rules/SpaceAroundComments.swift",
        "Rules/SpaceAroundGenerics.swift",
        "Rules/SpaceAroundOperators.swift",
        "Rules/SpaceAroundParens.swift",
        "Rules/SpaceInsideBraces.swift",
        "Rules/SpaceInsideBrackets.swift",
        "Rules/SpaceInsideComments.swift",
        "Rules/SpaceInsideGenerics.swift",
        "Rules/SpaceInsideParens.swift",
        "Rules/Specifiers.swift",
        "Rules/StrongOutlets.swift",
        "Rules/StrongifiedSelf.swift",
        "Rules/SwiftTestingTestCaseNames.swift",
        "Rules/ThrowingTests.swift",
        "Rules/Todos.swift",
        "Rules/TrailingClosures.swift",
        "Rules/TrailingCommas.swift",
        "Rules/TrailingSpace.swift",
        "Rules/TypeSugar.swift",
        "Rules/URLMacro.swift",
        "Rules/UnusedArguments.swift",
        "Rules/UnusedPrivateDeclarations.swift",
        "Rules/Void.swift",
        "Rules/Wrap.swift",
        "Rules/WrapArguments.swift",
        "Rules/WrapAttributes.swift",
        "Rules/WrapConditionalBodies.swift",
        "Rules/WrapEnumCases.swift",
        "Rules/WrapLoopBodies.swift",
        "Rules/WrapMultilineConditionalAssignment.swift",
        "Rules/WrapMultilineFunctionChains.swift",
        "Rules/WrapMultilineStatementBraces.swift",
        "Rules/WrapSingleLineComments.swift",
        "Rules/WrapSwitchCases.swift",
        "Rules/YodaConditions.swift",
        "SARIFReporter.swift",
        "Singularize.swift",
        "SwiftFormat.swift",
        "Tokenizer.swift",
        "XMLReporter.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CommandLineTool",
      "module_type" : "SwiftTarget",
      "name" : "CommandLineTool",
      "path" : "CommandLineTool",
      "product_memberships" : [
        "swiftformat",
        "SwiftFormatPlugin"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "SwiftFormat"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.7"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "swiftformat",
      "SwiftFormat",
      "SwiftFormat-Package"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme SwiftFormat-Package -destination generic/platform=tvOS
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme SwiftFormat-Package -destination generic/platform=tvOS
Resolve Package Graph
Resolved source packages:
  SwiftFormat: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
Compile plug-in “SwiftFormatPlugin” in package “spi-builder-workspace”
[debug]: Compiling plugin to executable at /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/PluginExecutables/SwiftFormatPlugin
[debug]: Using compiler /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc
[debug]: Plugin compilation output directory '/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/PluginExecutables'
[debug]: Computed hash of plugin compilation inputs: c8dadc676c5dde18914f20eb6ee308621e10d3075785feb89a1a7a6ab73d8669
Process build tool plug-in results
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (3 targets)
    Target 'swiftformat' in project 'SwiftFormat'
        ➜ Explicit dependency on target 'SwiftFormat' in project 'SwiftFormat'
    Target 'SwiftFormat' in project 'SwiftFormat'
        ➜ Explicit dependency on target 'SwiftFormat' in project 'SwiftFormat'
    Target 'SwiftFormat' in project 'SwiftFormat' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: 24d79133f528c5077a6d3d3c234c95b8
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/24d79133f528c5077a6d3d3c234c95b8.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.SwiftFileList (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.SwiftFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.LinkFileList (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat.LinkFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/swiftformat.DependencyStaticMetadataFileList (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/swiftformat.DependencyStaticMetadataFileList
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat-OutputFileMap.json (in target 'swiftformat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat-OutputFileMap.json
SwiftDriver SwiftFormat normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftFormat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftFormat -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ SwiftFormat (in target 'SwiftFormat' from project 'SwiftFormat')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift (in target 'SwiftFormat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:45:12: warning: file 'main.swift' is part of module 'SwiftFormat'; ignoring import
    import SwiftFormat
           ^
/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:69:1: error: cannot find 'CLI' in scope
CLI.print = { message, type in
^~~
/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:69:15: error: cannot infer type of closure parameter 'message' without a type annotation
CLI.print = { message, type in
              ^
/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:69:24: error: cannot infer type of closure parameter 'type' without a type annotation
CLI.print = { message, type in
                       ^
/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:90:6: error: cannot find 'CLI' in scope
exit(CLI.run(in: currentDirectory.path).rawValue)
     ^~~
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftFormat -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.4 -target-sdk-name appletvos18.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/swiftformat.build/Objects-normal/arm64/swiftformat-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftFormat.build/Debug-appletvos/SwiftFormat.build/Objects-normal/arm64/SwiftFormat.abi.json
SwiftCompile normal arm64 Compiling\ main.swift /Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift (in target 'SwiftFormat' from project 'SwiftFormat')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift (in target 'SwiftFormat' from project 'SwiftFormat')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:45:12: warning: file 'main.swift' is part of module 'SwiftFormat'; ignoring import
    import SwiftFormat
           ^
/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:69:1: error: cannot find 'CLI' in scope
CLI.print = { message, type in
^~~
/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:69:15: error: cannot infer type of closure parameter 'message' without a type annotation
CLI.print = { message, type in
              ^
/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:69:24: error: cannot infer type of closure parameter 'type' without a type annotation
CLI.print = { message, type in
                       ^
/Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift:90:6: error: cannot find 'CLI' in scope
exit(CLI.run(in: currentDirectory.path).rawValue)
     ^~~
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift (in target 'SwiftFormat' from project 'SwiftFormat')
	SwiftEmitModule normal arm64 Emitting\ module\ for\ SwiftFormat (in target 'SwiftFormat' from project 'SwiftFormat')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/CommandLineTool/main.swift (in target 'SwiftFormat' from project 'SwiftFormat')
	Building workspace spi-builder-workspace with scheme SwiftFormat-Package
(4 failures)
BUILD FAILURE 6.1 tvOS