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 SwiftLint, reference main (3574e3), with Swift 5.10 for Linux on 12 Sep 2025 18:34:01 UTC.

Build Command

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

Build Log

/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/NSRegularExpression+SwiftLint.swift:4:13: warning: let 'regexCacheLock' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
private let regexCacheLock = NSLock()
            ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/NSRegularExpression+SwiftLint.swift:8:16: warning: stored property 'regex' of 'Sendable'-conforming struct 'RegularExpression' has non-sendable type 'NSRegularExpression'
    public let regex: NSRegularExpression
               ^
Foundation.NSRegularExpression:1:12: note: class 'NSRegularExpression' does not conform to the 'Sendable' protocol
open class NSRegularExpression : NSObject, NSCopying, NSSecureCoding {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/NSRegularExpression+SwiftLint.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/QueuedPrint.swift:4:13: warning: let 'outputQueue' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
private let outputQueue: DispatchQueue = {
            ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/QueuedPrint.swift:1:17: remark: '@preconcurrency' attribute on module 'Dispatch' is unused
@preconcurrency import Dispatch
~~~~~~~~~~~~~~~~^
[657/731] Compiling SwiftLintCore Request+SwiftLint.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/NSRegularExpression+SwiftLint.swift:4:13: warning: let 'regexCacheLock' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
private let regexCacheLock = NSLock()
            ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/NSRegularExpression+SwiftLint.swift:8:16: warning: stored property 'regex' of 'Sendable'-conforming struct 'RegularExpression' has non-sendable type 'NSRegularExpression'
    public let regex: NSRegularExpression
               ^
Foundation.NSRegularExpression:1:12: note: class 'NSRegularExpression' does not conform to the 'Sendable' protocol
open class NSRegularExpression : NSObject, NSCopying, NSSecureCoding {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/NSRegularExpression+SwiftLint.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/QueuedPrint.swift:4:13: warning: let 'outputQueue' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
private let outputQueue: DispatchQueue = {
            ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/QueuedPrint.swift:1:17: remark: '@preconcurrency' attribute on module 'Dispatch' is unused
@preconcurrency import Dispatch
~~~~~~~~~~~~~~~~^
[658/731] Compiling SwiftLintCore SeverityConfiguration.swift
[659/731] Compiling SwiftLintCore StyleViolation.swift
[660/731] Compiling SwiftLintCore SwiftExpressionKind.swift
[661/731] Compiling SwiftLintCore SwiftLintFile.swift
[662/731] Compiling SwiftLintCore SwiftLintSyntaxMap.swift
[663/731] Compiling SwiftLintCore SwiftLintSyntaxToken.swift
[664/731] Compiling SwiftLintCore SwiftVersion.swift
[665/731] Compiling SwiftLintCore ViolationSeverity.swift
[666/731] Compiling SwiftLintCore ASTRule.swift
[667/731] Compiling SwiftLintCore CacheDescriptionProvider.swift
[668/731] Compiling SwiftLintCore CollectingRule.swift
[669/731] Compiling SwiftLintCore Rule.swift
[670/731] Compiling SwiftLintCore RuleConfiguration.swift
[671/731] Compiling SwiftLintCore SwiftSyntaxCorrectableRule.swift
[672/731] Compiling SwiftLintCore SwiftSyntaxRule.swift
[673/731] Compiling SwiftLintCore CodeIndentingRewriter.swift
[674/731] Compiling SwiftLintCore RuleConfigurationDescription.swift
[675/731] Compiling SwiftLintCore RuleDescription.swift
[676/731] Compiling SwiftLintCore RuleIdentifier.swift
[677/731] Compiling SwiftLintCore RuleKind.swift
[678/731] Compiling SwiftLintCore RuleList.swift
[679/731] Compiling SwiftLintCore RuleParameter.swift
[680/731] Compiling SwiftLintCore RuleRegistry.swift
[681/731] Compiling SwiftLintCore RuleStorage.swift
[682/731] Compiling SwiftLintCore ChildOptionSeverityConfiguration.swift
[683/731] Compiling SwiftLintCore Command.swift
[684/731] Compiling SwiftLintCore ConfigurationRuleWrapper.swift
[685/731] Compiling SwiftLintCore Correction.swift
[686/731] Compiling SwiftLintCore CurrentRule.swift
[687/731] Compiling SwiftLintCore Example.swift
[688/731] Compiling SwiftLintCore Issue.swift
[689/731] Compiling SwiftLintCore Location.swift
[690/731] Compiling SwiftLintCore Region.swift
[691/731] Compiling SwiftLintCore SwiftLintFile+Regex.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Helpers/SwiftSyntaxKindBridge.swift:39:9: warning: default will never be executed
        @unknown default:
        ^
[692/731] Compiling SwiftLintCore SwiftSyntax+SwiftLint.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Helpers/SwiftSyntaxKindBridge.swift:39:9: warning: default will never be executed
        @unknown default:
        ^
[693/731] Compiling SwiftLintCore SyntaxClassification+isComment.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Helpers/SwiftSyntaxKindBridge.swift:39:9: warning: default will never be executed
        @unknown default:
        ^
[694/731] Compiling SwiftLintCore SyntaxKind+SwiftLint.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Helpers/SwiftSyntaxKindBridge.swift:39:9: warning: default will never be executed
        @unknown default:
        ^
[695/731] Compiling SwiftLintCore Macros.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Helpers/SwiftSyntaxKindBridge.swift:39:9: warning: default will never be executed
        @unknown default:
        ^
[696/731] Compiling SwiftLintCore Stack.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Helpers/SwiftSyntaxKindBridge.swift:39:9: warning: default will never be executed
        @unknown default:
        ^
[697/731] Compiling SwiftLintCore SwiftSyntaxKindBridge.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Helpers/SwiftSyntaxKindBridge.swift:39:9: warning: default will never be executed
        @unknown default:
        ^
[698/731] Compiling SwiftLintCore AccessControlLevel.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Helpers/SwiftSyntaxKindBridge.swift:39:9: warning: default will never be executed
        @unknown default:
        ^
[699/731] Compiling SwiftLintCore Baseline.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Helpers/SwiftSyntaxKindBridge.swift:39:9: warning: default will never be executed
        @unknown default:
        ^
[700/731] Compiling SwiftLintCore SourceKittenDictionary+Swiftlint.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:63:37: warning: stored property 'values' of 'Sendable'-conforming generic class 'Cache' is mutable
    private nonisolated(unsafe) var values = [FileCacheKey: T]()
                                    ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:212:17: warning: stored property 'primitiveLock' of 'Sendable'-conforming class 'PlatformLock' has non-sendable type 'NSLock'
    private let primitiveLock = NSLock()
                ^
Foundation.NSLock:1:12: note: class 'NSLock' does not conform to the 'Sendable' protocol
open class NSLock : NSObject, NSLocking {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:4:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[701/731] Compiling SwiftLintCore SourceRange+SwiftLint.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:63:37: warning: stored property 'values' of 'Sendable'-conforming generic class 'Cache' is mutable
    private nonisolated(unsafe) var values = [FileCacheKey: T]()
                                    ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:212:17: warning: stored property 'primitiveLock' of 'Sendable'-conforming class 'PlatformLock' has non-sendable type 'NSLock'
    private let primitiveLock = NSLock()
                ^
Foundation.NSLock:1:12: note: class 'NSLock' does not conform to the 'Sendable' protocol
open class NSLock : NSObject, NSLocking {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:4:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[702/731] Compiling SwiftLintCore String+SwiftLint.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:63:37: warning: stored property 'values' of 'Sendable'-conforming generic class 'Cache' is mutable
    private nonisolated(unsafe) var values = [FileCacheKey: T]()
                                    ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:212:17: warning: stored property 'primitiveLock' of 'Sendable'-conforming class 'PlatformLock' has non-sendable type 'NSLock'
    private let primitiveLock = NSLock()
                ^
Foundation.NSLock:1:12: note: class 'NSLock' does not conform to the 'Sendable' protocol
open class NSLock : NSObject, NSLocking {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:4:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[703/731] Compiling SwiftLintCore StringView+SwiftLint.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:63:37: warning: stored property 'values' of 'Sendable'-conforming generic class 'Cache' is mutable
    private nonisolated(unsafe) var values = [FileCacheKey: T]()
                                    ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:212:17: warning: stored property 'primitiveLock' of 'Sendable'-conforming class 'PlatformLock' has non-sendable type 'NSLock'
    private let primitiveLock = NSLock()
                ^
Foundation.NSLock:1:12: note: class 'NSLock' does not conform to the 'Sendable' protocol
open class NSLock : NSObject, NSLocking {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:4:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[704/731] Compiling SwiftLintCore StringView+SwiftSyntax.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:63:37: warning: stored property 'values' of 'Sendable'-conforming generic class 'Cache' is mutable
    private nonisolated(unsafe) var values = [FileCacheKey: T]()
                                    ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:212:17: warning: stored property 'primitiveLock' of 'Sendable'-conforming class 'PlatformLock' has non-sendable type 'NSLock'
    private let primitiveLock = NSLock()
                ^
Foundation.NSLock:1:12: note: class 'NSLock' does not conform to the 'Sendable' protocol
open class NSLock : NSObject, NSLocking {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:4:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[705/731] Compiling SwiftLintCore SwiftDeclarationAttributeKind+Swiftlint.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:63:37: warning: stored property 'values' of 'Sendable'-conforming generic class 'Cache' is mutable
    private nonisolated(unsafe) var values = [FileCacheKey: T]()
                                    ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:212:17: warning: stored property 'primitiveLock' of 'Sendable'-conforming class 'PlatformLock' has non-sendable type 'NSLock'
    private let primitiveLock = NSLock()
                ^
Foundation.NSLock:1:12: note: class 'NSLock' does not conform to the 'Sendable' protocol
open class NSLock : NSObject, NSLocking {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:4:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[706/731] Compiling SwiftLintCore SwiftDeclarationKind+SwiftLint.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:63:37: warning: stored property 'values' of 'Sendable'-conforming generic class 'Cache' is mutable
    private nonisolated(unsafe) var values = [FileCacheKey: T]()
                                    ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:212:17: warning: stored property 'primitiveLock' of 'Sendable'-conforming class 'PlatformLock' has non-sendable type 'NSLock'
    private let primitiveLock = NSLock()
                ^
Foundation.NSLock:1:12: note: class 'NSLock' does not conform to the 'Sendable' protocol
open class NSLock : NSObject, NSLocking {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:4:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[707/731] Compiling SwiftLintCore SwiftLintFile+BodyLineCount.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:63:37: warning: stored property 'values' of 'Sendable'-conforming generic class 'Cache' is mutable
    private nonisolated(unsafe) var values = [FileCacheKey: T]()
                                    ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:212:17: warning: stored property 'primitiveLock' of 'Sendable'-conforming class 'PlatformLock' has non-sendable type 'NSLock'
    private let primitiveLock = NSLock()
                ^
Foundation.NSLock:1:12: note: class 'NSLock' does not conform to the 'Sendable' protocol
open class NSLock : NSObject, NSLocking {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:4:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[708/731] Compiling SwiftLintCore SwiftLintFile+Cache.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:1:17: remark: '@preconcurrency' attribute on module 'SourceKittenFramework' is unused
@preconcurrency import SourceKittenFramework
~~~~~~~~~~~~~~~~^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:63:37: warning: stored property 'values' of 'Sendable'-conforming generic class 'Cache' is mutable
    private nonisolated(unsafe) var values = [FileCacheKey: T]()
                                    ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:212:17: warning: stored property 'primitiveLock' of 'Sendable'-conforming class 'PlatformLock' has non-sendable type 'NSLock'
    private let primitiveLock = NSLock()
                ^
Foundation.NSLock:1:12: note: class 'NSLock' does not conform to the 'Sendable' protocol
open class NSLock : NSObject, NSLocking {
           ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftLintFile+Cache.swift:4:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[714/732] Compiling SwiftLintCore RegexConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
[715/732] Compiling SwiftLintCore SeverityLevelsConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
[716/732] Compiling SwiftLintCore BodyLengthVisitor.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
[717/732] Compiling SwiftLintCore CodeBlockVisitor.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
[718/732] Compiling SwiftLintCore CommandVisitor.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
[719/732] Compiling SwiftLintCore CommentLinesVisitor.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
[720/732] Compiling SwiftLintCore DeclaredIdentifiersTrackingVisitor.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
[721/732] Compiling SwiftLintCore ViolationsSyntaxVisitor.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:18:16: warning: static property 'allKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let allKinds: Set<SyntaxKind> = [
               ^
[721/732] Wrapping AST for SwiftLexicalLookup for debugging
[723/733] Wrapping AST for SwiftLintCore for debugging
[725/736] Emitting module SwiftLintExtraRules
[726/736] Compiling SwiftLintExtraRules Exports.swift
[727/736] Compiling SwiftLintExtraRules ExtraRules.swift
[728/906] Wrapping AST for SwiftLintExtraRules for debugging
[730/906] Compiling SwiftLintBuiltInRules ProhibitedSuperRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[731/906] Compiling SwiftLintBuiltInRules QuickDiscouragedCallRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[732/906] Compiling SwiftLintBuiltInRules QuickDiscouragedCallRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[733/906] Compiling SwiftLintBuiltInRules QuickDiscouragedFocusedTestRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[734/906] Compiling SwiftLintBuiltInRules QuickDiscouragedFocusedTestRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[735/906] Compiling SwiftLintBuiltInRules QuickDiscouragedPendingTestRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[736/906] Compiling SwiftLintBuiltInRules QuickDiscouragedPendingTestRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[737/906] Compiling SwiftLintBuiltInRules RawValueForCamelCasedCodableEnumRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[738/906] Compiling SwiftLintBuiltInRules RedundantSendableRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[739/906] Compiling SwiftLintBuiltInRules RequiredDeinitRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[740/906] Compiling SwiftLintBuiltInRules RequiredEnumCaseRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[741/906] Compiling SwiftLintBuiltInRules SelfInPropertyInitializationRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[742/906] Compiling SwiftLintBuiltInRules StrongIBOutletRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[743/906] Compiling SwiftLintBuiltInRules TestCaseAccessibilityRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[744/906] Compiling SwiftLintBuiltInRules TestCaseAccessibilityRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[745/906] Compiling SwiftLintBuiltInRules TodoRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[746/906] Compiling SwiftLintBuiltInRules TypesafeArrayInitRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[747/906] Compiling SwiftLintBuiltInRules UnhandledThrowingTaskRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[748/906] Compiling SwiftLintBuiltInRules UnneededOverrideRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[749/906] Compiling SwiftLintBuiltInRules UnneededOverrideRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[750/906] Compiling SwiftLintBuiltInRules UnownedVariableCaptureRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[751/906] Compiling SwiftLintBuiltInRules UnusedClosureParameterRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[752/906] Compiling SwiftLintBuiltInRules UnusedClosureParameterRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[753/906] Compiling SwiftLintBuiltInRules UnusedControlFlowLabelRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
[754/930] Compiling SwiftLintBuiltInRules AsyncWithoutAwaitRuleExamples.swift
[755/930] Compiling SwiftLintBuiltInRules BalancedXCTestLifecycleRule.swift
[756/930] Compiling SwiftLintBuiltInRules BlanketDisableCommandRule.swift
[757/930] Compiling SwiftLintBuiltInRules CaptureVariableRule.swift
[758/930] Compiling SwiftLintBuiltInRules ClassDelegateProtocolRule.swift
[759/930] Compiling SwiftLintBuiltInRules CommentSpacingRule.swift
[760/930] Compiling SwiftLintBuiltInRules CompilerProtocolInitRule.swift
[761/930] Compiling SwiftLintBuiltInRules DeploymentTargetRule.swift
[762/930] Compiling SwiftLintBuiltInRules DeploymentTargetRuleExamples.swift
[763/930] Compiling SwiftLintBuiltInRules DiscardedNotificationCenterObserverRule.swift
[764/930] Compiling SwiftLintBuiltInRules DiscouragedDirectInitRule.swift
[765/930] Compiling SwiftLintBuiltInRules DuplicateConditionsRule.swift
[766/930] Compiling SwiftLintBuiltInRules DuplicateEnumCasesRule.swift
[767/930] Compiling SwiftLintBuiltInRules DuplicatedKeyInDictionaryLiteralRule.swift
[768/930] Compiling SwiftLintBuiltInRules DynamicInlineRule.swift
[769/930] Compiling SwiftLintBuiltInRules EmptyXCTestMethodRule.swift
[770/930] Compiling SwiftLintBuiltInRules EmptyXCTestMethodRuleExamples.swift
[771/930] Compiling SwiftLintBuiltInRules ExpiringTodoRule.swift
[772/930] Compiling SwiftLintBuiltInRules IBInspectableInExtensionRule.swift
[773/930] Compiling SwiftLintBuiltInRules IdenticalOperandsRule.swift
[774/930] Compiling SwiftLintBuiltInRules InvalidSwiftLintCommandRule.swift
[775/930] Compiling SwiftLintBuiltInRules LocalDocCommentRule.swift
[776/930] Compiling SwiftLintBuiltInRules LowerACLThanParentRule.swift
[777/930] Compiling SwiftLintBuiltInRules MarkRule.swift
[778/954] Compiling SwiftLintBuiltInRules FileNameNoSpaceRule.swift
[779/954] Compiling SwiftLintBuiltInRules FileNameRule.swift
[780/954] Compiling SwiftLintBuiltInRules ForWhereRule.swift
[781/954] Compiling SwiftLintBuiltInRules ForceCastRule.swift
[782/954] Compiling SwiftLintBuiltInRules ForceTryRule.swift
[783/954] Compiling SwiftLintBuiltInRules ForceUnwrappingRule.swift
[784/954] Compiling SwiftLintBuiltInRules FunctionDefaultParameterAtEndRule.swift
[785/954] Compiling SwiftLintBuiltInRules GenericTypeNameRule.swift
[786/954] Compiling SwiftLintBuiltInRules ImplicitlyUnwrappedOptionalRule.swift
[787/954] Compiling SwiftLintBuiltInRules IsDisjointRule.swift
[788/954] Compiling SwiftLintBuiltInRules JoinedDefaultParameterRule.swift
[789/954] Compiling SwiftLintBuiltInRules LegacyCGGeometryFunctionsRule.swift
[790/954] Compiling SwiftLintBuiltInRules LegacyConstantRule.swift
[791/954] Compiling SwiftLintBuiltInRules LegacyConstantRuleExamples.swift
[792/954] Compiling SwiftLintBuiltInRules LegacyConstructorRule.swift
[793/954] Compiling SwiftLintBuiltInRules LegacyHashingRule.swift
[794/954] Compiling SwiftLintBuiltInRules LegacyMultipleRule.swift
[795/954] Compiling SwiftLintBuiltInRules LegacyNSGeometryFunctionsRule.swift
[796/954] Compiling SwiftLintBuiltInRules LegacyObjcTypeRule.swift
[797/954] Compiling SwiftLintBuiltInRules LegacyRandomRule.swift
[798/954] Compiling SwiftLintBuiltInRules NimbleOperatorRule.swift
[799/954] Compiling SwiftLintBuiltInRules NoEmptyBlockRule.swift
[800/954] Compiling SwiftLintBuiltInRules NoExtensionAccessModifierRule.swift
[801/954] Compiling SwiftLintBuiltInRules NoFallthroughOnlyRule.swift
[802/978] Compiling SwiftLintBuiltInRules StrictFilePrivateRule.swift
[803/978] Compiling SwiftLintBuiltInRules SyntacticSugarRule.swift
[804/978] Compiling SwiftLintBuiltInRules SyntacticSugarRuleExamples.swift
[805/978] Compiling SwiftLintBuiltInRules ToggleBoolRule.swift
[806/978] Compiling SwiftLintBuiltInRules TrailingSemicolonRule.swift
[807/978] Compiling SwiftLintBuiltInRules TypeNameRule.swift
[808/978] Compiling SwiftLintBuiltInRules TypeNameRuleExamples.swift
[809/978] Compiling SwiftLintBuiltInRules UnavailableConditionRule.swift
[810/978] Compiling SwiftLintBuiltInRules UnavailableFunctionRule.swift
[811/978] Compiling SwiftLintBuiltInRules UnneededBreakInSwitchRule.swift
[812/978] Compiling SwiftLintBuiltInRules UnneededSynthesizedInitializerRule.swift
[813/978] Compiling SwiftLintBuiltInRules UnneededSynthesizedInitializerRuleExamples.swift
[814/978] Compiling SwiftLintBuiltInRules UntypedErrorInCatchRule.swift
[815/978] Compiling SwiftLintBuiltInRules UnusedEnumeratedRule.swift
[816/978] Compiling SwiftLintBuiltInRules VoidFunctionInTernaryConditionRule.swift
[817/978] Compiling SwiftLintBuiltInRules XCTFailMessageRule.swift
[818/978] Compiling SwiftLintBuiltInRules XCTSpecificMatcherRule.swift
[819/978] Compiling SwiftLintBuiltInRules XCTSpecificMatcherRuleExamples.swift
[820/978] Compiling SwiftLintBuiltInRules AccessibilityLabelForImageRule.swift
[821/978] Compiling SwiftLintBuiltInRules AccessibilityLabelForImageRuleExamples.swift
[822/978] Compiling SwiftLintBuiltInRules AccessibilityTraitForButtonRule.swift
[823/978] Compiling SwiftLintBuiltInRules AccessibilityTraitForButtonRuleExamples.swift
[824/978] Compiling SwiftLintBuiltInRules ArrayInitRule.swift
[825/978] Compiling SwiftLintBuiltInRules AsyncWithoutAwaitRule.swift
[826/978] Compiling SwiftLintBuiltInRules MarkRuleExamples.swift
[827/978] Compiling SwiftLintBuiltInRules MissingDocsRule.swift
[828/978] Compiling SwiftLintBuiltInRules MissingDocsRuleExamples.swift
[829/978] Compiling SwiftLintBuiltInRules NSLocalizedStringKeyRule.swift
[830/978] Compiling SwiftLintBuiltInRules NSLocalizedStringRequireBundleRule.swift
[831/978] Compiling SwiftLintBuiltInRules NSNumberInitAsFunctionReferenceRule.swift
[832/978] Compiling SwiftLintBuiltInRules NSObjectPreferIsEqualRule.swift
[833/978] Compiling SwiftLintBuiltInRules NSObjectPreferIsEqualRuleExamples.swift
[834/978] Compiling SwiftLintBuiltInRules NonOptionalStringDataConversionRule.swift
[835/978] Compiling SwiftLintBuiltInRules NotificationCenterDetachmentRule.swift
[836/978] Compiling SwiftLintBuiltInRules NotificationCenterDetachmentRuleExamples.swift
[837/978] Compiling SwiftLintBuiltInRules OptionalDataStringConversionRule.swift
[838/978] Compiling SwiftLintBuiltInRules OrphanedDocCommentRule.swift
[839/978] Compiling SwiftLintBuiltInRules OverriddenSuperCallRule.swift
[840/978] Compiling SwiftLintBuiltInRules OverrideInExtensionRule.swift
[841/978] Compiling SwiftLintBuiltInRules PeriodSpacingRule.swift
[842/978] Compiling SwiftLintBuiltInRules PrivateActionRule.swift
[843/978] Compiling SwiftLintBuiltInRules PrivateOutletRule.swift
[844/978] Compiling SwiftLintBuiltInRules PrivateSubjectRule.swift
[845/978] Compiling SwiftLintBuiltInRules PrivateSubjectRuleExamples.swift
[846/978] Compiling SwiftLintBuiltInRules PrivateSwiftUIStatePropertyRule.swift
[847/978] Compiling SwiftLintBuiltInRules PrivateSwiftUIStatePropertyRuleExamples.swift
[848/978] Compiling SwiftLintBuiltInRules PrivateUnitTestRule.swift
[849/978] Compiling SwiftLintBuiltInRules ProhibitedInterfaceBuilderRule.swift
[850/1026] Compiling SwiftLintBuiltInRules NoFallthroughOnlyRuleExamples.swift
[851/1026] Compiling SwiftLintBuiltInRules NoGroupingExtensionRule.swift
[852/1026] Compiling SwiftLintBuiltInRules NoMagicNumbersRule.swift
[853/1026] Compiling SwiftLintBuiltInRules ObjectLiteralRule.swift
[854/1026] Compiling SwiftLintBuiltInRules OneDeclarationPerFileRule.swift
[855/1026] Compiling SwiftLintBuiltInRules PatternMatchingKeywordsRule.swift
[856/1026] Compiling SwiftLintBuiltInRules PreferConditionListRule.swift
[857/1026] Compiling SwiftLintBuiltInRules PreferKeyPathRule.swift
[858/1026] Compiling SwiftLintBuiltInRules PreferNimbleRule.swift
[859/1026] Compiling SwiftLintBuiltInRules PreferTypeCheckingRule.swift
[860/1026] Compiling SwiftLintBuiltInRules PreferZeroOverExplicitInitRule.swift
[861/1026] Compiling SwiftLintBuiltInRules PrivateOverFilePrivateRule.swift
[862/1026] Compiling SwiftLintBuiltInRules RedundantNilCoalescingRule.swift
[863/1026] Compiling SwiftLintBuiltInRules RedundantObjcAttributeRule.swift
[864/1026] Compiling SwiftLintBuiltInRules RedundantObjcAttributeRuleExamples.swift
[865/1026] Compiling SwiftLintBuiltInRules RedundantSetAccessControlRule.swift
[866/1026] Compiling SwiftLintBuiltInRules RedundantStringEnumValueRule.swift
[867/1026] Compiling SwiftLintBuiltInRules RedundantTypeAnnotationRule.swift
[868/1026] Compiling SwiftLintBuiltInRules RedundantVoidReturnRule.swift
[869/1026] Compiling SwiftLintBuiltInRules ReturnValueFromVoidFunctionRule.swift
[870/1026] Compiling SwiftLintBuiltInRules ReturnValueFromVoidFunctionRuleExamples.swift
[871/1026] Compiling SwiftLintBuiltInRules ShorthandOptionalBindingRule.swift
[872/1026] Compiling SwiftLintBuiltInRules StaticOperatorRule.swift
[873/1026] Compiling SwiftLintBuiltInRules StaticOverFinalClassRule.swift
[874/1049] Compiling SwiftLintBuiltInRules ContainsOverRangeNilComparisonRule.swift
[875/1049] Compiling SwiftLintBuiltInRules EmptyCollectionLiteralRule.swift
[876/1049] Compiling SwiftLintBuiltInRules EmptyCountRule.swift
[877/1049] Compiling SwiftLintBuiltInRules EmptyStringRule.swift
[878/1049] Compiling SwiftLintBuiltInRules FinalTestCaseRule.swift
[879/1049] Compiling SwiftLintBuiltInRules FirstWhereRule.swift
[880/1049] Compiling SwiftLintBuiltInRules FlatMapOverMapReduceRule.swift
[881/1049] Compiling SwiftLintBuiltInRules LastWhereRule.swift
[882/1049] Compiling SwiftLintBuiltInRules ReduceBooleanRule.swift
[883/1049] Compiling SwiftLintBuiltInRules ReduceIntoRule.swift
[884/1049] Compiling SwiftLintBuiltInRules SortedFirstLastRule.swift
[885/1049] Compiling SwiftLintBuiltInRules AttributesConfiguration.swift
[886/1049] Compiling SwiftLintBuiltInRules BlanketDisableCommandConfiguration.swift
[887/1049] Compiling SwiftLintBuiltInRules CollectionAlignmentConfiguration.swift
[888/1049] Compiling SwiftLintBuiltInRules ColonConfiguration.swift
[889/1049] Compiling SwiftLintBuiltInRules ComputedAccessorsOrderConfiguration.swift
[890/1049] Compiling SwiftLintBuiltInRules ConditionalReturnsOnNewlineConfiguration.swift
[891/1049] Compiling SwiftLintBuiltInRules CyclomaticComplexityConfiguration.swift
[892/1049] Compiling SwiftLintBuiltInRules DeploymentTargetConfiguration.swift
[893/1049] Compiling SwiftLintBuiltInRules DiscouragedDirectInitConfiguration.swift
[894/1049] Compiling SwiftLintBuiltInRules EmptyCountConfiguration.swift
[895/1049] Compiling SwiftLintBuiltInRules ExpiringTodoConfiguration.swift
[896/1049] Compiling SwiftLintBuiltInRules ExplicitInitConfiguration.swift
[897/1049] Compiling SwiftLintBuiltInRules ExplicitTypeInterfaceConfiguration.swift
[898/1072] Compiling SwiftLintBuiltInRules UnusedDeclarationRule.swift
[899/1072] Compiling SwiftLintBuiltInRules UnusedDeclarationRuleExamples.swift
[900/1072] Compiling SwiftLintBuiltInRules UnusedImportRule.swift
[901/1072] Compiling SwiftLintBuiltInRules UnusedImportRuleExamples.swift
[902/1072] Compiling SwiftLintBuiltInRules UnusedParameterRule.swift
[903/1072] Compiling SwiftLintBuiltInRules UnusedSetterValueRule.swift
[904/1072] Compiling SwiftLintBuiltInRules ValidIBInspectableRule.swift
[905/1072] Compiling SwiftLintBuiltInRules WeakDelegateRule.swift
[906/1072] Compiling SwiftLintBuiltInRules YodaConditionRule.swift
[907/1072] Compiling SwiftLintBuiltInRules ClosureBodyLengthRule.swift
[908/1072] Compiling SwiftLintBuiltInRules ClosureBodyLengthRuleExamples.swift
[909/1072] Compiling SwiftLintBuiltInRules CyclomaticComplexityRule.swift
[910/1072] Compiling SwiftLintBuiltInRules EnumCaseAssociatedValuesLengthRule.swift
[911/1072] Compiling SwiftLintBuiltInRules FileLengthRule.swift
[912/1072] Compiling SwiftLintBuiltInRules FunctionBodyLengthRule.swift
[913/1072] Compiling SwiftLintBuiltInRules FunctionParameterCountRule.swift
[914/1072] Compiling SwiftLintBuiltInRules LargeTupleRule.swift
[915/1072] Compiling SwiftLintBuiltInRules LineLengthRule.swift
[916/1072] Compiling SwiftLintBuiltInRules NestingRule.swift
[917/1072] Compiling SwiftLintBuiltInRules NestingRuleExamples.swift
[918/1072] Compiling SwiftLintBuiltInRules TypeBodyLengthRule.swift
[919/1072] Compiling SwiftLintBuiltInRules ContainsOverFilterCountRule.swift
[920/1072] Compiling SwiftLintBuiltInRules ContainsOverFilterIsEmptyRule.swift
[921/1072] Compiling SwiftLintBuiltInRules ContainsOverFirstNotNilRule.swift
[922/1095] Compiling SwiftLintBuiltInRules ColonRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[923/1095] Compiling SwiftLintBuiltInRules ColonRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[924/1095] Compiling SwiftLintBuiltInRules CommaInheritanceRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[925/1095] Compiling SwiftLintBuiltInRules CommaRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[926/1095] Compiling SwiftLintBuiltInRules ComputedAccessorsOrderRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[927/1095] Compiling SwiftLintBuiltInRules ComputedAccessorsOrderRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[928/1095] Compiling SwiftLintBuiltInRules ConditionalReturnsOnNewlineRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[929/1095] Compiling SwiftLintBuiltInRules ContrastedOpeningBraceRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[930/1095] Compiling SwiftLintBuiltInRules ContrastedOpeningBraceRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[931/1095] Compiling SwiftLintBuiltInRules ControlStatementRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[932/1095] Compiling SwiftLintBuiltInRules DirectReturnRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[933/1095] Compiling SwiftLintBuiltInRules EmptyEnumArgumentsRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[934/1095] Compiling SwiftLintBuiltInRules EmptyParametersRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[935/1095] Compiling SwiftLintBuiltInRules EmptyParenthesesWithTrailingClosureRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[936/1095] Compiling SwiftLintBuiltInRules ExplicitSelfRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[937/1095] Compiling SwiftLintBuiltInRules ExplicitSelfRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[938/1095] Compiling SwiftLintBuiltInRules FileHeaderRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[939/1095] Compiling SwiftLintBuiltInRules FileTypesOrderRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[940/1095] Compiling SwiftLintBuiltInRules FileTypesOrderRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[941/1095] Compiling SwiftLintBuiltInRules FunctionNameWhitespaceRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[942/1095] Compiling SwiftLintBuiltInRules FunctionNameWhitespaceRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[943/1095] Compiling SwiftLintBuiltInRules IdentifierNameRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[944/1095] Compiling SwiftLintBuiltInRules IdentifierNameRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:21:16: warning: static property 'typeKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let typeKinds: Set<SwiftDeclarationKind> = [
               ^
[945/1118] Compiling SwiftLintBuiltInRules TodoConfiguration.swift
[946/1118] Compiling SwiftLintBuiltInRules TrailingClosureConfiguration.swift
[947/1118] Compiling SwiftLintBuiltInRules TrailingCommaConfiguration.swift
[948/1118] Compiling SwiftLintBuiltInRules TrailingWhitespaceConfiguration.swift
[949/1118] Compiling SwiftLintBuiltInRules TypeBodyLengthConfiguration.swift
[950/1118] Compiling SwiftLintBuiltInRules TypeContentsOrderConfiguration.swift
[951/1118] Compiling SwiftLintBuiltInRules TypeNameConfiguration.swift
[952/1118] Compiling SwiftLintBuiltInRules UnitTestConfiguration.swift
[953/1118] Compiling SwiftLintBuiltInRules UnneededOverrideRuleConfiguration.swift
[954/1118] Compiling SwiftLintBuiltInRules UnusedDeclarationConfiguration.swift
[955/1118] Compiling SwiftLintBuiltInRules UnusedImportConfiguration.swift
[956/1118] Compiling SwiftLintBuiltInRules UnusedOptionalBindingConfiguration.swift
[957/1118] Compiling SwiftLintBuiltInRules VerticalWhitespaceClosingBracesConfiguration.swift
[958/1118] Compiling SwiftLintBuiltInRules VerticalWhitespaceConfiguration.swift
[959/1118] Compiling SwiftLintBuiltInRules XCTSpecificMatcherConfiguration.swift
[960/1118] Compiling SwiftLintBuiltInRules AttributeNameSpacingRule.swift
[961/1118] Compiling SwiftLintBuiltInRules AttributesRule.swift
[962/1118] Compiling SwiftLintBuiltInRules AttributesRuleExamples.swift
[963/1118] Compiling SwiftLintBuiltInRules ClosingBraceRule.swift
[964/1118] Compiling SwiftLintBuiltInRules ClosureEndIndentationRule.swift
[965/1118] Compiling SwiftLintBuiltInRules ClosureEndIndentationRuleExamples.swift
[966/1118] Compiling SwiftLintBuiltInRules ClosureParameterPositionRule.swift
[967/1118] Compiling SwiftLintBuiltInRules ClosureSpacingRule.swift
[968/1118] Compiling SwiftLintBuiltInRules CollectionAlignmentRule.swift
[969/1118] Compiling SwiftLintBuiltInRules NoMagicNumbersConfiguration.swift
[970/1118] Compiling SwiftLintBuiltInRules NonOptionalStringDataConversionConfiguration.swift
[971/1118] Compiling SwiftLintBuiltInRules NonOverridableClassDeclarationConfiguration.swift
[972/1118] Compiling SwiftLintBuiltInRules NumberSeparatorConfiguration.swift
[973/1118] Compiling SwiftLintBuiltInRules ObjectLiteralConfiguration.swift
[974/1118] Compiling SwiftLintBuiltInRules OpeningBraceConfiguration.swift
[975/1118] Compiling SwiftLintBuiltInRules OperatorUsageWhitespaceConfiguration.swift
[976/1118] Compiling SwiftLintBuiltInRules OverriddenSuperCallConfiguration.swift
[977/1118] Compiling SwiftLintBuiltInRules PreferKeyPathConfiguration.swift
[978/1118] Compiling SwiftLintBuiltInRules PrefixedTopLevelConstantConfiguration.swift
[979/1118] Compiling SwiftLintBuiltInRules PrivateOutletConfiguration.swift
[980/1118] Compiling SwiftLintBuiltInRules PrivateOverFilePrivateConfiguration.swift
[981/1118] Compiling SwiftLintBuiltInRules ProhibitedSuperConfiguration.swift
[982/1118] Compiling SwiftLintBuiltInRules RedundantDiscardableLetConfiguration.swift
[983/1118] Compiling SwiftLintBuiltInRules RedundantSendableConfiguration.swift
[984/1118] Compiling SwiftLintBuiltInRules RedundantTypeAnnotationConfiguration.swift
[985/1118] Compiling SwiftLintBuiltInRules RedundantVoidReturnConfiguration.swift
[986/1118] Compiling SwiftLintBuiltInRules RequiredEnumCaseConfiguration.swift
[987/1118] Compiling SwiftLintBuiltInRules SelfBindingConfiguration.swift
[988/1118] Compiling SwiftLintBuiltInRules ShorthandArgumentConfiguration.swift
[989/1118] Compiling SwiftLintBuiltInRules SortedImportsConfiguration.swift
[990/1118] Compiling SwiftLintBuiltInRules StatementPositionConfiguration.swift
[991/1118] Compiling SwiftLintBuiltInRules SwitchCaseAlignmentConfiguration.swift
[992/1118] Compiling SwiftLintBuiltInRules TestCaseAccessibilityConfiguration.swift
[993/1118] Compiling SwiftLintBuiltInRules FileHeaderConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[994/1118] Compiling SwiftLintBuiltInRules FileLengthConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[995/1118] Compiling SwiftLintBuiltInRules FileNameConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[996/1118] Compiling SwiftLintBuiltInRules FileNameNoSpaceConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[997/1118] Compiling SwiftLintBuiltInRules FileTypesOrderConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[998/1118] Compiling SwiftLintBuiltInRules ForWhereConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[999/1118] Compiling SwiftLintBuiltInRules FunctionDefaultParameterAtEndConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1000/1118] Compiling SwiftLintBuiltInRules FunctionNameWhitespaceConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1001/1118] Compiling SwiftLintBuiltInRules FunctionParameterCountConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1002/1118] Compiling SwiftLintBuiltInRules IdentifierNameConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1003/1118] Compiling SwiftLintBuiltInRules ImplicitOptionalInitializationConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1004/1118] Compiling SwiftLintBuiltInRules ImplicitReturnConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1005/1118] Compiling SwiftLintBuiltInRules ImplicitlyUnwrappedOptionalConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1006/1118] Compiling SwiftLintBuiltInRules InclusiveLanguageConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1007/1118] Compiling SwiftLintBuiltInRules IndentationWidthConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1008/1118] Compiling SwiftLintBuiltInRules LegacyObjcTypeConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1009/1118] Compiling SwiftLintBuiltInRules LineLengthConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1010/1118] Compiling SwiftLintBuiltInRules MissingDocsConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1011/1118] Compiling SwiftLintBuiltInRules ModifierOrderConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1012/1118] Compiling SwiftLintBuiltInRules MultilineArgumentsConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1013/1118] Compiling SwiftLintBuiltInRules MultilineParametersConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1014/1118] Compiling SwiftLintBuiltInRules NameConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1015/1118] Compiling SwiftLintBuiltInRules NestingConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1016/1118] Compiling SwiftLintBuiltInRules NoEmptyBlockConfiguration.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
[1017/1118] Compiling SwiftLintBuiltInRules ImplicitGetterRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1018/1118] Compiling SwiftLintBuiltInRules ImplicitGetterRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1019/1118] Compiling SwiftLintBuiltInRules ImplicitOptionalInitializationRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1020/1118] Compiling SwiftLintBuiltInRules ImplicitOptionalInitializationRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1021/1118] Compiling SwiftLintBuiltInRules ImplicitReturnRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1022/1118] Compiling SwiftLintBuiltInRules ImplicitReturnRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1023/1118] Compiling SwiftLintBuiltInRules InclusiveLanguageRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1024/1118] Compiling SwiftLintBuiltInRules InclusiveLanguageRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1025/1118] Compiling SwiftLintBuiltInRules IndentationWidthRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1026/1118] Compiling SwiftLintBuiltInRules LeadingWhitespaceRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1027/1118] Compiling SwiftLintBuiltInRules LetVarWhitespaceRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1028/1118] Compiling SwiftLintBuiltInRules LiteralExpressionEndIndentationRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1029/1118] Compiling SwiftLintBuiltInRules ModifierOrderRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1030/1118] Compiling SwiftLintBuiltInRules ModifierOrderRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1031/1118] Compiling SwiftLintBuiltInRules MultilineArgumentsBracketsRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1032/1118] Compiling SwiftLintBuiltInRules MultilineArgumentsRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1033/1118] Compiling SwiftLintBuiltInRules MultilineArgumentsRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1034/1118] Compiling SwiftLintBuiltInRules MultilineFunctionChainsRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1035/1118] Compiling SwiftLintBuiltInRules MultilineLiteralBracketsRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1036/1118] Compiling SwiftLintBuiltInRules MultilineParametersBracketsRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1037/1118] Compiling SwiftLintBuiltInRules MultilineParametersRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1038/1118] Compiling SwiftLintBuiltInRules MultilineParametersRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1039/1118] Compiling SwiftLintBuiltInRules MultipleClosuresWithTrailingClosureRule.swift
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SwiftDeclarationKind+SwiftLint.swift:4:16: warning: static property 'functionKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let functionKinds: Set<SwiftDeclarationKind> = [
               ^
[1040/1118] Compiling SwiftLintBuiltInRules Exports.swift
[1041/1118] Compiling SwiftLintBuiltInRules LegacyFunctionRuleHelper.swift
[1042/1118] Compiling SwiftLintBuiltInRules BuiltInRules.swift
[1043/1118] Compiling SwiftLintBuiltInRules ImportUsage.swift
[1044/1118] Compiling SwiftLintBuiltInRules AnonymousArgumentInMultilineClosureRule.swift
[1045/1118] Compiling SwiftLintBuiltInRules BlockBasedKVORule.swift
[1046/1118] Compiling SwiftLintBuiltInRules ConvenienceTypeRule.swift
[1047/1118] Compiling SwiftLintBuiltInRules DiscouragedAssertRule.swift
[1048/1118] Compiling SwiftLintBuiltInRules DiscouragedNoneNameRule.swift
[1049/1118] Compiling SwiftLintBuiltInRules DiscouragedObjectLiteralRule.swift
[1050/1118] Compiling SwiftLintBuiltInRules DiscouragedOptionalBooleanRule.swift
[1051/1118] Compiling SwiftLintBuiltInRules DiscouragedOptionalBooleanRuleExamples.swift
[1052/1118] Compiling SwiftLintBuiltInRules DiscouragedOptionalCollectionExamples.swift
[1053/1118] Compiling SwiftLintBuiltInRules DiscouragedOptionalCollectionRule.swift
[1054/1118] Compiling SwiftLintBuiltInRules DuplicateImportsRule.swift
[1055/1118] Compiling SwiftLintBuiltInRules DuplicateImportsRuleExamples.swift
[1056/1118] Compiling SwiftLintBuiltInRules ExplicitACLRule.swift
[1057/1118] Compiling SwiftLintBuiltInRules ExplicitEnumRawValueRule.swift
[1058/1118] Compiling SwiftLintBuiltInRules ExplicitInitRule.swift
[1059/1118] Compiling SwiftLintBuiltInRules ExplicitTopLevelACLRule.swift
[1060/1118] Compiling SwiftLintBuiltInRules ExplicitTypeInterfaceRule.swift
[1061/1118] Compiling SwiftLintBuiltInRules ExtensionAccessModifierRule.swift
[1062/1118] Compiling SwiftLintBuiltInRules FallthroughRule.swift
[1063/1118] Compiling SwiftLintBuiltInRules FatalErrorMessageRule.swift
[1064/1118] Compiling SwiftLintBuiltInRules NoSpaceInMethodCallRule.swift
[1065/1118] Compiling SwiftLintBuiltInRules NonOverridableClassDeclarationRule.swift
[1066/1118] Compiling SwiftLintBuiltInRules NumberSeparatorRule.swift
[1067/1118] Compiling SwiftLintBuiltInRules NumberSeparatorRuleExamples.swift
[1068/1118] Compiling SwiftLintBuiltInRules OpeningBraceRule.swift
[1069/1118] Compiling SwiftLintBuiltInRules OpeningBraceRuleExamples.swift
[1070/1118] Compiling SwiftLintBuiltInRules OperatorUsageWhitespaceRule.swift
[1071/1118] Compiling SwiftLintBuiltInRules OperatorUsageWhitespaceRuleExamples.swift
[1072/1118] Compiling SwiftLintBuiltInRules OptionalEnumCaseMatchingRule.swift
[1073/1118] Compiling SwiftLintBuiltInRules PreferSelfInStaticReferencesRule.swift
[1074/1118] Compiling SwiftLintBuiltInRules PreferSelfInStaticReferencesRuleExamples.swift
[1075/1118] Compiling SwiftLintBuiltInRules PreferSelfTypeOverTypeOfSelfRule.swift
[1076/1118] Compiling SwiftLintBuiltInRules PrefixedTopLevelConstantRule.swift
[1077/1118] Compiling SwiftLintBuiltInRules ProtocolPropertyAccessorsOrderRule.swift
[1078/1118] Compiling SwiftLintBuiltInRules RedundantDiscardableLetRule.swift
[1079/1118] Compiling SwiftLintBuiltInRules RedundantSelfInClosureRule.swift
[1080/1118] Compiling SwiftLintBuiltInRules RedundantSelfInClosureRuleExamples.swift
[1081/1118] Compiling SwiftLintBuiltInRules ReturnArrowWhitespaceRule.swift
[1082/1118] Compiling SwiftLintBuiltInRules SelfBindingRule.swift
[1083/1118] Compiling SwiftLintBuiltInRules ShorthandArgumentRule.swift
[1084/1118] Compiling SwiftLintBuiltInRules ShorthandOperatorRule.swift
[1085/1118] Compiling SwiftLintBuiltInRules SingleTestClassRule.swift
[1086/1118] Compiling SwiftLintBuiltInRules SortedEnumCasesRule.swift
[1087/1118] Compiling SwiftLintBuiltInRules SortedImportsRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1088/1118] Compiling SwiftLintBuiltInRules SortedImportsRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1089/1118] Compiling SwiftLintBuiltInRules StatementPositionRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1090/1118] Compiling SwiftLintBuiltInRules SuperfluousElseRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1091/1118] Compiling SwiftLintBuiltInRules SwitchCaseAlignmentRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1092/1118] Compiling SwiftLintBuiltInRules SwitchCaseOnNewlineRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1093/1118] Compiling SwiftLintBuiltInRules TrailingClosureRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1094/1118] Compiling SwiftLintBuiltInRules TrailingCommaRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1095/1118] Compiling SwiftLintBuiltInRules TrailingNewlineRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1096/1118] Compiling SwiftLintBuiltInRules TrailingWhitespaceRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1097/1118] Compiling SwiftLintBuiltInRules TypeContentsOrderRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1098/1118] Compiling SwiftLintBuiltInRules TypeContentsOrderRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1099/1118] Compiling SwiftLintBuiltInRules UnneededParenthesesInClosureArgumentRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1100/1118] Compiling SwiftLintBuiltInRules UnusedOptionalBindingRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1101/1118] Compiling SwiftLintBuiltInRules VerticalParameterAlignmentOnCallRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1102/1118] Compiling SwiftLintBuiltInRules VerticalParameterAlignmentRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1103/1118] Compiling SwiftLintBuiltInRules VerticalParameterAlignmentRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1104/1118] Compiling SwiftLintBuiltInRules VerticalWhitespaceBetweenCasesRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1105/1118] Compiling SwiftLintBuiltInRules VerticalWhitespaceClosingBracesRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1106/1118] Compiling SwiftLintBuiltInRules VerticalWhitespaceClosingBracesRuleExamples.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1107/1118] Compiling SwiftLintBuiltInRules VerticalWhitespaceOpeningBracesRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1108/1118] Compiling SwiftLintBuiltInRules VerticalWhitespaceRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1109/1118] Compiling SwiftLintBuiltInRules VoidReturnRule.swift
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:13:16: warning: static property 'commentKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentKinds: Set<SyntaxKind> = [
               ^
/host/spi-builder-workspace/Source/SwiftLintCore/Extensions/SyntaxKind+SwiftLint.swift:11:16: warning: static property 'commentAndStringKinds' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let commentAndStringKinds: Set<SyntaxKind> = commentKinds.union([.string])
               ^
[1110/1118] Emitting module SwiftLintBuiltInRules
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Lint/TypesafeArrayInitRule.swift:54:24: warning: static property 'mapTypePatterns' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let mapTypePatterns = [
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:8:24: warning: static property 'stringRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let stringRegexOptions: NSRegularExpression.Options = [.ignoreMetacharacters]
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:9:24: warning: static property 'patternRegexOptions' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let patternRegexOptions: NSRegularExpression.Options =
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/RuleConfigurations/FileHeaderConfiguration.swift:26:24: warning: static property 'defaultRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let defaultRegex = regex("\\bCopyright\\b", options: [.caseInsensitive])
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/LiteralExpressionEndIndentationRule.swift:142:28: warning: static property 'notWhitespace' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    fileprivate static let notWhitespace = regex("[^\\s]")
                           ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:133:24: warning: static property 'whitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let whitespaceDotRegex = regex("\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/MultilineFunctionChainsRule.swift:144:24: warning: static property 'newlineWhitespaceDotRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    private static let newlineWhitespaceDotRegex = regex("\\n\\s*\\.")
                       ^
/host/spi-builder-workspace/Source/SwiftLintBuiltInRules/Rules/Style/StatementPositionRule.swift:137:16: warning: static property 'uncuddledRegex' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let uncuddledRegex = regex(uncuddledPattern, options: [])
               ^
[1111/1119] Wrapping AST for SwiftLintBuiltInRules for debugging
[1113/1171] Compiling SwiftLintFramework Exports.swift
[1114/1171] Compiling SwiftLintFramework FileManager+SwiftLint.swift
[1115/1171] Compiling SwiftLintFramework String+XML.swift
[1116/1171] Compiling SwiftLintFramework String+sha256.swift
[1117/1171] Compiling SwiftLintFramework ExecutableInfo.swift
[1118/1171] Compiling SwiftLintFramework Glob.swift
[1119/1171] Compiling SwiftLintFramework Reachability.swift
[1120/1178] Emitting module SwiftLintFramework
[1121/1178] Compiling SwiftLintFramework RelativePathReporter.swift
[1122/1178] Compiling SwiftLintFramework Reporter.swift
[1123/1178] Compiling SwiftLintFramework SARIFReporter.swift
[1124/1178] Compiling SwiftLintFramework SonarQubeReporter.swift
[1125/1178] Compiling SwiftLintFramework SummaryReporter.swift
[1126/1178] Compiling SwiftLintFramework XcodeReporter.swift
[1127/1178] Compiling SwiftLintFramework CoreRules.swift
[1128/1178] Compiling SwiftLintFramework Version.swift
[1129/1178] Compiling SwiftLintFramework YamlParser.swift
[1130/1178] Compiling SwiftLintFramework ProcessInfo+XcodeCloud.swift
[1131/1178] Compiling SwiftLintFramework ProgressBar.swift
[1132/1178] Compiling SwiftLintFramework CSVReporter.swift
[1133/1178] Compiling SwiftLintFramework CheckstyleReporter.swift
[1134/1178] Compiling SwiftLintFramework CodeClimateReporter.swift
[1135/1178] Compiling SwiftLintFramework Configuration+Merging.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:297:63: error: value of type 'NSLock' has no member 'withLock'
            let cachedIsOptInRule = Self.isOptInRuleCacheLock.withLock {
                                    ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:306:39: error: value of type 'NSLock' has no member 'withLock'
            Self.isOptInRuleCacheLock.withLock {
            ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
[1136/1178] Compiling SwiftLintFramework Configuration+Parsing.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:297:63: error: value of type 'NSLock' has no member 'withLock'
            let cachedIsOptInRule = Self.isOptInRuleCacheLock.withLock {
                                    ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:306:39: error: value of type 'NSLock' has no member 'withLock'
            Self.isOptInRuleCacheLock.withLock {
            ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
[1137/1178] Compiling SwiftLintFramework Configuration+Remote.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:297:63: error: value of type 'NSLock' has no member 'withLock'
            let cachedIsOptInRule = Self.isOptInRuleCacheLock.withLock {
                                    ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:306:39: error: value of type 'NSLock' has no member 'withLock'
            Self.isOptInRuleCacheLock.withLock {
            ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
[1138/1178] Compiling SwiftLintFramework Configuration+RulesMode.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:297:63: error: value of type 'NSLock' has no member 'withLock'
            let cachedIsOptInRule = Self.isOptInRuleCacheLock.withLock {
                                    ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:306:39: error: value of type 'NSLock' has no member 'withLock'
            Self.isOptInRuleCacheLock.withLock {
            ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
[1139/1178] Compiling SwiftLintFramework Configuration+RulesWrapper.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:297:63: error: value of type 'NSLock' has no member 'withLock'
            let cachedIsOptInRule = Self.isOptInRuleCacheLock.withLock {
                                    ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:306:39: error: value of type 'NSLock' has no member 'withLock'
            Self.isOptInRuleCacheLock.withLock {
            ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
[1140/1178] Compiling SwiftLintFramework Configuration.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:297:63: error: value of type 'NSLock' has no member 'withLock'
            let cachedIsOptInRule = Self.isOptInRuleCacheLock.withLock {
                                    ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:306:39: error: value of type 'NSLock' has no member 'withLock'
            Self.isOptInRuleCacheLock.withLock {
            ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
[1141/1178] Compiling SwiftLintFramework RuleDocumentation.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:297:63: error: value of type 'NSLock' has no member 'withLock'
            let cachedIsOptInRule = Self.isOptInRuleCacheLock.withLock {
                                    ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:306:39: error: value of type 'NSLock' has no member 'withLock'
            Self.isOptInRuleCacheLock.withLock {
            ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
[1142/1178] Compiling SwiftLintFramework RuleListDocumentation.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:297:63: error: value of type 'NSLock' has no member 'withLock'
            let cachedIsOptInRule = Self.isOptInRuleCacheLock.withLock {
                                    ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Configuration/Configuration+RulesWrapper.swift:306:39: error: value of type 'NSLock' has no member 'withLock'
            Self.isOptInRuleCacheLock.withLock {
            ~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~~~
[1143/1178] Compiling SwiftLintFramework EmojiReporter.swift
[1144/1178] Compiling SwiftLintFramework GitHubActionsLoggingReporter.swift
[1145/1178] Compiling SwiftLintFramework GitLabJUnitReporter.swift
[1146/1178] Compiling SwiftLintFramework HTMLReporter.swift
[1147/1178] Compiling SwiftLintFramework JSONReporter.swift
[1148/1178] Compiling SwiftLintFramework JUnitReporter.swift
[1149/1178] Compiling SwiftLintFramework MarkdownReporter.swift
[1150/1178] Compiling SwiftLintFramework LintOrAnalyzeCommand.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:19:14: error: value of type 'NSLock' has no member 'withLock'
        lock.withLock {
        ~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:30:18: error: value of type 'NSLock' has no member 'withLock'
            lock.withLock {
            ~~~~ ^~~~~~~~
[1151/1178] Compiling SwiftLintFramework LintableFilesVisitor.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:19:14: error: value of type 'NSLock' has no member 'withLock'
        lock.withLock {
        ~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:30:18: error: value of type 'NSLock' has no member 'withLock'
            lock.withLock {
            ~~~~ ^~~~~~~~
[1152/1178] Compiling SwiftLintFramework CustomRuleTimer.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:19:14: error: value of type 'NSLock' has no member 'withLock'
        lock.withLock {
        ~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:30:18: error: value of type 'NSLock' has no member 'withLock'
            lock.withLock {
            ~~~~ ^~~~~~~~
[1153/1178] Compiling SwiftLintFramework HashableConfigurationRuleWrapperWrapper.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:19:14: error: value of type 'NSLock' has no member 'withLock'
        lock.withLock {
        ~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:30:18: error: value of type 'NSLock' has no member 'withLock'
            lock.withLock {
            ~~~~ ^~~~~~~~
[1154/1178] Compiling SwiftLintFramework Linter.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:19:14: error: value of type 'NSLock' has no member 'withLock'
        lock.withLock {
        ~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:30:18: error: value of type 'NSLock' has no member 'withLock'
            lock.withLock {
            ~~~~ ^~~~~~~~
[1155/1178] Compiling SwiftLintFramework LinterCache.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:19:14: error: value of type 'NSLock' has no member 'withLock'
        lock.withLock {
        ~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:30:18: error: value of type 'NSLock' has no member 'withLock'
            lock.withLock {
            ~~~~ ^~~~~~~~
[1156/1178] Compiling SwiftLintFramework ReportersList.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:19:14: error: value of type 'NSLock' has no member 'withLock'
        lock.withLock {
        ~~~~ ^~~~~~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/Models/CustomRuleTimer.swift:30:18: error: value of type 'NSLock' has no member 'withLock'
            lock.withLock {
            ~~~~ ^~~~~~~~
[1157/1178] Compiling SwiftLintFramework CustomRules.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:44: error: value of type 'URLSession' has no member 'data'
        return try await URLSession.shared.data(for: request).0
                         ~~~~~~~~~~~~~~~~~ ^~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:20: warning: no 'async' operations occur within 'await' expression
        return try await URLSession.shared.data(for: request).0
                   ^
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:16: warning: no calls to throwing functions occur within 'try' expression
        return try await URLSession.shared.data(for: request).0
               ^
[1158/1178] Compiling SwiftLintFramework SuperfluousDisableCommandRule.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:44: error: value of type 'URLSession' has no member 'data'
        return try await URLSession.shared.data(for: request).0
                         ~~~~~~~~~~~~~~~~~ ^~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:20: warning: no 'async' operations occur within 'await' expression
        return try await URLSession.shared.data(for: request).0
                   ^
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:16: warning: no calls to throwing functions occur within 'try' expression
        return try await URLSession.shared.data(for: request).0
               ^
[1159/1178] Compiling SwiftLintFramework RulesFilter.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:44: error: value of type 'URLSession' has no member 'data'
        return try await URLSession.shared.data(for: request).0
                         ~~~~~~~~~~~~~~~~~ ^~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:20: warning: no 'async' operations occur within 'await' expression
        return try await URLSession.shared.data(for: request).0
                   ^
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:16: warning: no calls to throwing functions occur within 'try' expression
        return try await URLSession.shared.data(for: request).0
               ^
[1160/1178] Compiling SwiftLintFramework Signposts.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:44: error: value of type 'URLSession' has no member 'data'
        return try await URLSession.shared.data(for: request).0
                         ~~~~~~~~~~~~~~~~~ ^~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:20: warning: no 'async' operations occur within 'await' expression
        return try await URLSession.shared.data(for: request).0
                   ^
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:16: warning: no calls to throwing functions occur within 'try' expression
        return try await URLSession.shared.data(for: request).0
               ^
[1161/1178] Compiling SwiftLintFramework SwiftLintError.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:44: error: value of type 'URLSession' has no member 'data'
        return try await URLSession.shared.data(for: request).0
                         ~~~~~~~~~~~~~~~~~ ^~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:20: warning: no 'async' operations occur within 'await' expression
        return try await URLSession.shared.data(for: request).0
                   ^
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:16: warning: no calls to throwing functions occur within 'try' expression
        return try await URLSession.shared.data(for: request).0
               ^
[1162/1178] Compiling SwiftLintFramework SwiftPMCompilationDB.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:44: error: value of type 'URLSession' has no member 'data'
        return try await URLSession.shared.data(for: request).0
                         ~~~~~~~~~~~~~~~~~ ^~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:20: warning: no 'async' operations occur within 'await' expression
        return try await URLSession.shared.data(for: request).0
                   ^
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:16: warning: no calls to throwing functions occur within 'try' expression
        return try await URLSession.shared.data(for: request).0
               ^
[1163/1178] Compiling SwiftLintFramework UpdateChecker.swift
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:44: error: value of type 'URLSession' has no member 'data'
        return try await URLSession.shared.data(for: request).0
                         ~~~~~~~~~~~~~~~~~ ^~~~
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:20: warning: no 'async' operations occur within 'await' expression
        return try await URLSession.shared.data(for: request).0
                   ^
/host/spi-builder-workspace/Source/SwiftLintFramework/UpdateChecker.swift:46:16: warning: no calls to throwing functions occur within 'try' expression
        return try await URLSession.shared.data(for: request).0
               ^
[1164/1178] Compiling SwiftLintFramework Benchmark.swift
[1165/1178] Compiling SwiftLintFramework CompilerArgumentsExtractor.swift
[1166/1178] Compiling SwiftLintFramework Configuration+CommandLine.swift
[1167/1178] Compiling SwiftLintFramework Configuration+Cache.swift
[1168/1178] Compiling SwiftLintFramework Configuration+FileGraph.swift
[1169/1178] Compiling SwiftLintFramework Configuration+FileGraphSubtypes.swift
[1170/1178] Compiling SwiftLintFramework Configuration+IndentationStyle.swift
[1171/1178] Compiling SwiftLintFramework Configuration+LintableFiles.swift
error: fatalError
BUILD FAILURE 5.10 linux