| 1 | file_path | project_path | module | status | line_count | issues | fix_guidance |
|---|
| 2 | src/__Analyzers/StellaOps.Determinism.Analyzers/CanonicalizationBoundaryAnalyzer.cs | src/__Analyzers/StellaOps.Determinism.Analyzers/StellaOps.Determinism.Analyzers.csproj | __Analyzers | FAIL | 318 | FileLength>100; PrivateFieldNaming; UsingNotSorted | Rename private fields to _camelCase.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 3 | src/__Analyzers/StellaOps.TestKit.Analyzers/IntentAnalyzer.cs | src/__Analyzers/StellaOps.TestKit.Analyzers/StellaOps.TestKit.Analyzers.csproj | __Analyzers | FAIL | 380 | FileLength>100; PrivateFieldNaming; UsingNotSorted | Rename private fields to _camelCase.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 4 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/AiAttestationService.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | FAIL | 276 | FileLength>100 | Split file to stay <= 100 lines. |
| 5 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/AiAttestationServiceExtensions.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | PASS | 59 | | |
| 6 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/IAiAttestationService.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | FAIL | 174 | FileLength>100 | Split file to stay <= 100 lines. |
| 7 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/PromptTemplateRegistry.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | FAIL | 152 | FileLength>100 | Split file to stay <= 100 lines. |
| 8 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Models/AiAttestationJsonContext.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | PASS | 29 | | |
| 9 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Models/AiClaimAttestation.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | FAIL | 140 | FileLength>100 | Split file to stay <= 100 lines. |
| 10 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Models/AiModelInfo.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | PASS | 53 | | |
| 11 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Models/AiRunAttestation.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | FAIL | 119 | FileLength>100 | Split file to stay <= 100 lines. |
| 12 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Models/AiRunContext.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | PASS | 49 | | |
| 13 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Models/AiTurnSummary.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | PASS | 93 | | |
| 14 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Models/ClaimEvidence.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | PASS | 69 | | |
| 15 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Models/PromptTemplateInfo.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | PASS | 31 | | |
| 16 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Storage/IAiAttestationStore.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | FAIL | 105 | FileLength>100 | Split file to stay <= 100 lines. |
| 17 | src/__Libraries/StellaOps.AdvisoryAI.Attestation/Storage/InMemoryAiAttestationStore.cs | src/__Libraries/StellaOps.AdvisoryAI.Attestation/StellaOps.AdvisoryAI.Attestation.csproj | __Libraries | FAIL | 168 | FileLength>100 | Split file to stay <= 100 lines. |
| 18 | src/__Libraries/StellaOps.Artifact.Core/CycloneDxExtractor.cs | src/__Libraries/StellaOps.Artifact.Core/StellaOps.Artifact.Core.csproj | __Libraries | FAIL | 554 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 19 | src/__Libraries/StellaOps.Artifact.Core/IArtifactStore.cs | src/__Libraries/StellaOps.Artifact.Core/StellaOps.Artifact.Core.csproj | __Libraries | FAIL | 380 | FileLength>100 | Split file to stay <= 100 lines. |
| 20 | src/__Libraries/StellaOps.Artifact.Core/Api/ArtifactController.cs | src/__Libraries/StellaOps.Artifact.Core/StellaOps.Artifact.Core.csproj | __Libraries | FAIL | 612 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 21 | src/__Libraries/StellaOps.Artifact.Infrastructure/ArtifactIndexRepository.cs | src/__Libraries/StellaOps.Artifact.Infrastructure/StellaOps.Artifact.Infrastructure.csproj | __Libraries | FAIL | 280 | FileLength>100 | Split file to stay <= 100 lines. |
| 22 | src/__Libraries/StellaOps.Artifact.Infrastructure/ArtifactMigrationService.cs | src/__Libraries/StellaOps.Artifact.Infrastructure/StellaOps.Artifact.Infrastructure.csproj | __Libraries | FAIL | 409 | AsyncNaming; BlockingAsync; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 23 | src/__Libraries/StellaOps.Artifact.Infrastructure/PostgresArtifactIndexRepository.cs | src/__Libraries/StellaOps.Artifact.Infrastructure/StellaOps.Artifact.Infrastructure.csproj | __Libraries | FAIL | 311 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 24 | src/__Libraries/StellaOps.Artifact.Infrastructure/S3UnifiedArtifactStore.cs | src/__Libraries/StellaOps.Artifact.Infrastructure/StellaOps.Artifact.Infrastructure.csproj | __Libraries | FAIL | 431 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 25 | src/__Libraries/StellaOps.Artifact.Infrastructure/ServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Artifact.Infrastructure/StellaOps.Artifact.Infrastructure.csproj | __Libraries | FAIL | 203 | FileLength>100; ServiceLocator; UsingInsideNamespace | Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 26 | src/__Libraries/StellaOps.Audit.ReplayToken/DecisionReplayTokenExtensions.cs | src/__Libraries/StellaOps.Audit.ReplayToken/StellaOps.Audit.ReplayToken.csproj | __Libraries | PASS | 72 | | |
| 27 | src/__Libraries/StellaOps.Audit.ReplayToken/IReplayTokenGenerator.cs | src/__Libraries/StellaOps.Audit.ReplayToken/StellaOps.Audit.ReplayToken.csproj | __Libraries | PASS | 51 | | |
| 28 | src/__Libraries/StellaOps.Audit.ReplayToken/ReplayCliSnippetGenerator.cs | src/__Libraries/StellaOps.Audit.ReplayToken/StellaOps.Audit.ReplayToken.csproj | __Libraries | PASS | 87 | | |
| 29 | src/__Libraries/StellaOps.Audit.ReplayToken/ReplayToken.cs | src/__Libraries/StellaOps.Audit.ReplayToken/StellaOps.Audit.ReplayToken.csproj | __Libraries | FAIL | 200 | FileLength>100 | Split file to stay <= 100 lines. |
| 30 | src/__Libraries/StellaOps.Audit.ReplayToken/ReplayTokenRequest.cs | src/__Libraries/StellaOps.Audit.ReplayToken/StellaOps.Audit.ReplayToken.csproj | __Libraries | PASS | 53 | | |
| 31 | src/__Libraries/StellaOps.Audit.ReplayToken/ServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Audit.ReplayToken/StellaOps.Audit.ReplayToken.csproj | __Libraries | PASS | 27 | | |
| 32 | src/__Libraries/StellaOps.Audit.ReplayToken/Sha256ReplayTokenGenerator.cs | src/__Libraries/StellaOps.Audit.ReplayToken/StellaOps.Audit.ReplayToken.csproj | __Libraries | FAIL | 193 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 33 | src/__Libraries/StellaOps.AuditPack/Models/AuditBundleManifest.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 210 | FileLength>100 | Split file to stay <= 100 lines. |
| 34 | src/__Libraries/StellaOps.AuditPack/Models/AuditPack.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 145 | FileLength>100 | Split file to stay <= 100 lines. |
| 35 | src/__Libraries/StellaOps.AuditPack/Properties/AssemblyInfo.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | PASS | 4 | | |
| 36 | src/__Libraries/StellaOps.AuditPack/Services/AirGapTrustStoreIntegration.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 358 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 37 | src/__Libraries/StellaOps.AuditPack/Services/ArchiveUtilities.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 161 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 38 | src/__Libraries/StellaOps.AuditPack/Services/AuditBundleReader.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 669 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 39 | src/__Libraries/StellaOps.AuditPack/Services/AuditBundleSigner.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 382 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 40 | src/__Libraries/StellaOps.AuditPack/Services/AuditBundleWriter.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 530 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 41 | src/__Libraries/StellaOps.AuditPack/Services/AuditPackBuilder.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 251 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 42 | src/__Libraries/StellaOps.AuditPack/Services/AuditPackExportService.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 432 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 43 | src/__Libraries/StellaOps.AuditPack/Services/AuditPackIds.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | PASS | 18 | | |
| 44 | src/__Libraries/StellaOps.AuditPack/Services/AuditPackImporter.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 264 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 45 | src/__Libraries/StellaOps.AuditPack/Services/AuditPackReplayer.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 136 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 46 | src/__Libraries/StellaOps.AuditPack/Services/CanonicalJson.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 63 | PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase. |
| 47 | src/__Libraries/StellaOps.AuditPack/Services/IsolatedReplayContext.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 372 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 48 | src/__Libraries/StellaOps.AuditPack/Services/ReplayAttestationService.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 475 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 49 | src/__Libraries/StellaOps.AuditPack/Services/ReplayExecutor.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 522 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 50 | src/__Libraries/StellaOps.AuditPack/Services/ReplayTelemetry.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 401 | FileLength>100 | Split file to stay <= 100 lines. |
| 51 | src/__Libraries/StellaOps.AuditPack/Services/ScanSnapshotFetcher.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 312 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 52 | src/__Libraries/StellaOps.AuditPack/Services/VerdictReplayPredicate.cs | src/__Libraries/StellaOps.AuditPack/StellaOps.AuditPack.csproj | __Libraries | FAIL | 504 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 53 | src/__Libraries/StellaOps.Auth.Security/Dpop/DpopNonceConsumeResult.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | PASS | 51 | | |
| 54 | src/__Libraries/StellaOps.Auth.Security/Dpop/DpopNonceIssueResult.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | PASS | 57 | | |
| 55 | src/__Libraries/StellaOps.Auth.Security/Dpop/DpopNonceUtilities.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | FAIL | 71 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 56 | src/__Libraries/StellaOps.Auth.Security/Dpop/DpopProofValidator.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | FAIL | 260 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 57 | src/__Libraries/StellaOps.Auth.Security/Dpop/DpopValidationOptions.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | FAIL | 98 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 58 | src/__Libraries/StellaOps.Auth.Security/Dpop/DpopValidationResult.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | PASS | 41 | | |
| 59 | src/__Libraries/StellaOps.Auth.Security/Dpop/IDpopNonceStore.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | PASS | 46 | | |
| 60 | src/__Libraries/StellaOps.Auth.Security/Dpop/IDpopProofValidator.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | PASS | 7 | | |
| 61 | src/__Libraries/StellaOps.Auth.Security/Dpop/IDpopReplayCache.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | PASS | 7 | | |
| 62 | src/__Libraries/StellaOps.Auth.Security/Dpop/InMemoryDpopNonceStore.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | FAIL | 178 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 63 | src/__Libraries/StellaOps.Auth.Security/Dpop/InMemoryDpopReplayCache.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | FAIL | 67 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 64 | src/__Libraries/StellaOps.Auth.Security/Dpop/MessagingDpopNonceStore.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | FAIL | 164 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 65 | src/__Libraries/StellaOps.Auth.Security/Dpop/MessagingDpopReplayCache.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | PASS | 44 | | |
| 66 | src/__Libraries/StellaOps.Auth.Security/Dpop/RedisDpopNonceStore.cs | src/__Libraries/StellaOps.Auth.Security/StellaOps.Auth.Security.csproj | __Libraries | FAIL | 140 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 67 | src/__Libraries/StellaOps.Canonical.Json/CanonJson.cs | src/__Libraries/StellaOps.Canonical.Json/StellaOps.Canonical.Json.csproj | __Libraries | FAIL | 355 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 68 | src/__Libraries/StellaOps.Canonical.Json/CanonVersion.cs | src/__Libraries/StellaOps.Canonical.Json/StellaOps.Canonical.Json.csproj | __Libraries | PASS | 88 | | |
| 69 | src/__Libraries/StellaOps.Canonical.Json/ICanonicalizable.cs | src/__Libraries/StellaOps.Canonical.Json/StellaOps.Canonical.Json.csproj | __Libraries | PASS | 55 | | |
| 70 | src/__Libraries/StellaOps.Canonicalization/Culture/InvariantCulture.cs | src/__Libraries/StellaOps.Canonicalization/StellaOps.Canonicalization.csproj | __Libraries | PASS | 61 | | |
| 71 | src/__Libraries/StellaOps.Canonicalization/Json/CanonicalJsonSerializer.cs | src/__Libraries/StellaOps.Canonicalization/StellaOps.Canonicalization.csproj | __Libraries | FAIL | 143 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 72 | src/__Libraries/StellaOps.Canonicalization/Ordering/Orderers.cs | src/__Libraries/StellaOps.Canonicalization/StellaOps.Canonicalization.csproj | __Libraries | PASS | 80 | | |
| 73 | src/__Libraries/StellaOps.Canonicalization/Verification/DeterminismVerifier.cs | src/__Libraries/StellaOps.Canonicalization/StellaOps.Canonicalization.csproj | __Libraries | FAIL | 128 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 74 | src/__Libraries/StellaOps.Configuration.SettingsStore/NullSecretResolver.cs | src/__Libraries/StellaOps.Configuration.SettingsStore/StellaOps.Configuration.SettingsStore.csproj | __Libraries | FAIL | 112 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 75 | src/__Libraries/StellaOps.Configuration.SettingsStore/SettingsStoreConfigurationSource.cs | src/__Libraries/StellaOps.Configuration.SettingsStore/StellaOps.Configuration.SettingsStore.csproj | __Libraries | FAIL | 232 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 76 | src/__Libraries/StellaOps.Configuration.SettingsStore/Providers/AwsParameterStoreConfigurationProvider.cs | src/__Libraries/StellaOps.Configuration.SettingsStore/StellaOps.Configuration.SettingsStore.csproj | __Libraries | FAIL | 199 | FileLength>100 | Split file to stay <= 100 lines. |
| 77 | src/__Libraries/StellaOps.Configuration.SettingsStore/Providers/AzureAppConfigurationProvider.cs | src/__Libraries/StellaOps.Configuration.SettingsStore/StellaOps.Configuration.SettingsStore.csproj | __Libraries | FAIL | 220 | FileLength>100 | Split file to stay <= 100 lines. |
| 78 | src/__Libraries/StellaOps.Configuration.SettingsStore/Providers/ConsulConfigurationProvider.cs | src/__Libraries/StellaOps.Configuration.SettingsStore/StellaOps.Configuration.SettingsStore.csproj | __Libraries | FAIL | 172 | FileLength>100 | Split file to stay <= 100 lines. |
| 79 | src/__Libraries/StellaOps.Configuration.SettingsStore/Providers/EtcdConfigurationProvider.cs | src/__Libraries/StellaOps.Configuration.SettingsStore/StellaOps.Configuration.SettingsStore.csproj | __Libraries | FAIL | 220 | FileLength>100 | Split file to stay <= 100 lines. |
| 80 | src/__Libraries/StellaOps.Configuration/AuthorityAdvisoryAiOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | FAIL | 164 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 81 | src/__Libraries/StellaOps.Configuration/AuthorityApiLifecycleOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | FAIL | 78 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 82 | src/__Libraries/StellaOps.Configuration/AuthorityConfigurationDiagnostic.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | PASS | 29 | | |
| 83 | src/__Libraries/StellaOps.Configuration/AuthorityNotificationsOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | FAIL | 249 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 84 | src/__Libraries/StellaOps.Configuration/AuthorityPluginConfigurationAnalyzer.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | PASS | 100 | | |
| 85 | src/__Libraries/StellaOps.Configuration/AuthorityPluginConfigurationLoader.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | FAIL | 103 | FileLength>100 | Split file to stay <= 100 lines. |
| 86 | src/__Libraries/StellaOps.Configuration/AuthoritySigningAdditionalKeyOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | PASS | 31 | | |
| 87 | src/__Libraries/StellaOps.Configuration/AuthoritySigningOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | PASS | 94 | | |
| 88 | src/__Libraries/StellaOps.Configuration/AuthorityVulnerabilityExplorerOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | FAIL | 181 | FileLength>100 | Split file to stay <= 100 lines. |
| 89 | src/__Libraries/StellaOps.Configuration/StellaOpsAuthorityConfiguration.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | FAIL | 58 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 90 | src/__Libraries/StellaOps.Configuration/StellaOpsAuthorityOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | FAIL | 1578 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 91 | src/__Libraries/StellaOps.Configuration/StellaOpsBootstrapOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | PASS | 67 | | |
| 92 | src/__Libraries/StellaOps.Configuration/StellaOpsConfigurationBootstrapper.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | FAIL | 108 | FileLength>100 | Split file to stay <= 100 lines. |
| 93 | src/__Libraries/StellaOps.Configuration/StellaOpsConfigurationContext.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | PASS | 20 | | |
| 94 | src/__Libraries/StellaOps.Configuration/StellaOpsConfigurationOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | PASS | 51 | | |
| 95 | src/__Libraries/StellaOps.Configuration/StellaOpsCryptoOptions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | PASS | 24 | | |
| 96 | src/__Libraries/StellaOps.Configuration/StellaOpsCryptoServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | FAIL | 108 | FileLength>100 | Split file to stay <= 100 lines. |
| 97 | src/__Libraries/StellaOps.Configuration/StellaOpsOptionsBinder.cs | src/__Libraries/StellaOps.Configuration/StellaOps.Configuration.csproj | __Libraries | PASS | 28 | | |
| 98 | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/CertificateStatusOptions.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/StellaOps.Cryptography.CertificateStatus.Abstractions.csproj | __Libraries | FAIL | 107 | FileLength>100 | Split file to stay <= 100 lines. |
| 99 | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/CertificateStatusRequest.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/StellaOps.Cryptography.CertificateStatus.Abstractions.csproj | __Libraries | PASS | 69 | | |
| 100 | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/CertificateStatusResult.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/StellaOps.Cryptography.CertificateStatus.Abstractions.csproj | __Libraries | FAIL | 176 | FileLength>100 | Split file to stay <= 100 lines. |
| 101 | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/ICertificateStatusProvider.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/StellaOps.Cryptography.CertificateStatus.Abstractions.csproj | __Libraries | PASS | 51 | | |
| 102 | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/RevocationEnums.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/StellaOps.Cryptography.CertificateStatus.Abstractions.csproj | __Libraries | FAIL | 127 | FileLength>100 | Split file to stay <= 100 lines. |
| 103 | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/StapledRevocationData.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus.Abstractions/StellaOps.Cryptography.CertificateStatus.Abstractions.csproj | __Libraries | FAIL | 133 | FileLength>100 | Split file to stay <= 100 lines. |
| 104 | src/__Libraries/StellaOps.Cryptography.CertificateStatus/CertificateStatusProvider.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus/StellaOps.Cryptography.CertificateStatus.csproj | __Libraries | FAIL | 264 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 105 | src/__Libraries/StellaOps.Cryptography.CertificateStatus/CertificateStatusServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus/StellaOps.Cryptography.CertificateStatus.csproj | __Libraries | PASS | 73 | | |
| 106 | src/__Libraries/StellaOps.Cryptography.CertificateStatus/CrlFetcher.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus/StellaOps.Cryptography.CertificateStatus.csproj | __Libraries | FAIL | 338 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 107 | src/__Libraries/StellaOps.Cryptography.CertificateStatus/OcspClient.cs | src/__Libraries/StellaOps.Cryptography.CertificateStatus/StellaOps.Cryptography.CertificateStatus.csproj | __Libraries | FAIL | 445 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 108 | src/__Libraries/StellaOps.Cryptography.DependencyInjection/CryptoPluginServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Cryptography.DependencyInjection/StellaOps.Cryptography.DependencyInjection.csproj | __Libraries | FAIL | 141 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 109 | src/__Libraries/StellaOps.Cryptography.DependencyInjection/CryptoProviderRegistryOptions.cs | src/__Libraries/StellaOps.Cryptography.DependencyInjection/StellaOps.Cryptography.DependencyInjection.csproj | __Libraries | PASS | 85 | | |
| 110 | src/__Libraries/StellaOps.Cryptography.DependencyInjection/CryptoProviderRegistryValidator.cs | src/__Libraries/StellaOps.Cryptography.DependencyInjection/StellaOps.Cryptography.DependencyInjection.csproj | __Libraries | FAIL | 144 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 111 | src/__Libraries/StellaOps.Cryptography.DependencyInjection/CryptoServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Cryptography.DependencyInjection/StellaOps.Cryptography.DependencyInjection.csproj | __Libraries | FAIL | 367 | FileLength>100; ServiceLocator; UsingNotSorted | Remove service locator usage; use constructor injection.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 112 | src/__Libraries/StellaOps.Cryptography.DependencyInjection/StellaOpsCryptoOptions.cs | src/__Libraries/StellaOps.Cryptography.DependencyInjection/StellaOps.Cryptography.DependencyInjection.csproj | __Libraries | FAIL | 21 | UsingNotSorted | Sort using directives alphabetically. |
| 113 | src/__Libraries/StellaOps.Cryptography.Kms/AwsKmsClient.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 252 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 114 | src/__Libraries/StellaOps.Cryptography.Kms/AwsKmsFacade.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 191 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 115 | src/__Libraries/StellaOps.Cryptography.Kms/AwsKmsOptions.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 55 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 116 | src/__Libraries/StellaOps.Cryptography.Kms/Fido2KmsClient.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 190 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 117 | src/__Libraries/StellaOps.Cryptography.Kms/Fido2Options.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 46 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 118 | src/__Libraries/StellaOps.Cryptography.Kms/FileKmsClient.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 713 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 119 | src/__Libraries/StellaOps.Cryptography.Kms/FileKmsOptions.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | PASS | 28 | | |
| 120 | src/__Libraries/StellaOps.Cryptography.Kms/GcpKmsClient.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 295 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 121 | src/__Libraries/StellaOps.Cryptography.Kms/GcpKmsFacade.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 176 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 122 | src/__Libraries/StellaOps.Cryptography.Kms/GcpKmsOptions.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 43 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 123 | src/__Libraries/StellaOps.Cryptography.Kms/IFido2Authenticator.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | PASS | 18 | | |
| 124 | src/__Libraries/StellaOps.Cryptography.Kms/IKmsClient.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | PASS | 52 | | |
| 125 | src/__Libraries/StellaOps.Cryptography.Kms/InternalsVisibleTo.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 5 | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| 126 | src/__Libraries/StellaOps.Cryptography.Kms/KmsAlgorithms.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | PASS | 10 | | |
| 127 | src/__Libraries/StellaOps.Cryptography.Kms/KmsCryptoProvider.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 138 | BlockingAsync; FileLength>100 | Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 128 | src/__Libraries/StellaOps.Cryptography.Kms/KmsKeyMaterial.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | PASS | 15 | | |
| 129 | src/__Libraries/StellaOps.Cryptography.Kms/KmsKeyMetadata.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | PASS | 25 | | |
| 130 | src/__Libraries/StellaOps.Cryptography.Kms/KmsKeyState.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | PASS | 12 | | |
| 131 | src/__Libraries/StellaOps.Cryptography.Kms/KmsSigner.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 57 | AsyncNaming; BlockingAsync | Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await. |
| 132 | src/__Libraries/StellaOps.Cryptography.Kms/KmsSignResult.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | PASS | 11 | | |
| 133 | src/__Libraries/StellaOps.Cryptography.Kms/Pkcs11Facade.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 288 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 134 | src/__Libraries/StellaOps.Cryptography.Kms/Pkcs11KmsClient.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 233 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 135 | src/__Libraries/StellaOps.Cryptography.Kms/Pkcs11Options.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 72 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 136 | src/__Libraries/StellaOps.Cryptography.Kms/ServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Cryptography.Kms/StellaOps.Cryptography.Kms.csproj | __Libraries | FAIL | 168 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 137 | src/__Libraries/StellaOps.Cryptography.Providers.OfflineVerification/OfflineVerificationCryptoProvider.cs | src/__Libraries/StellaOps.Cryptography.Providers.OfflineVerification/StellaOps.Cryptography.Providers.OfflineVerification.csproj | __Libraries | FAIL | 176 | FileLength>100 | Split file to stay <= 100 lines. |
| 138 | src/__Libraries/StellaOps.Cryptography/Argon2idPasswordHasher.BouncyCastle.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 35 | UsingNotSorted | Sort using directives alphabetically. |
| 139 | src/__Libraries/StellaOps.Cryptography/Argon2idPasswordHasher.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 174 | FileLength>100 | Split file to stay <= 100 lines. |
| 140 | src/__Libraries/StellaOps.Cryptography/Argon2idPasswordHasher.Sodium.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 37 | UsingNotSorted | Sort using directives alphabetically. |
| 141 | src/__Libraries/StellaOps.Cryptography/CompliancePolicyCryptoProviders.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 287 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 142 | src/__Libraries/StellaOps.Cryptography/ComplianceProfile.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 126 | FileLength>100 | Split file to stay <= 100 lines. |
| 143 | src/__Libraries/StellaOps.Cryptography/ComplianceProfiles.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 289 | FileLength>100 | Split file to stay <= 100 lines. |
| 144 | src/__Libraries/StellaOps.Cryptography/CryptoComplianceDiagnostics.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 118 | FileLength>100 | Split file to stay <= 100 lines. |
| 145 | src/__Libraries/StellaOps.Cryptography/CryptoComplianceException.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 57 | | |
| 146 | src/__Libraries/StellaOps.Cryptography/CryptoComplianceOptions.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 71 | | |
| 147 | src/__Libraries/StellaOps.Cryptography/CryptoComplianceService.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 166 | FileLength>100 | Split file to stay <= 100 lines. |
| 148 | src/__Libraries/StellaOps.Cryptography/CryptoHashFactory.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 14 | | |
| 149 | src/__Libraries/StellaOps.Cryptography/CryptoHashOptions.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 7 | | |
| 150 | src/__Libraries/StellaOps.Cryptography/CryptoProvider.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 136 | FileLength>100 | Split file to stay <= 100 lines. |
| 151 | src/__Libraries/StellaOps.Cryptography/CryptoProviderDiagnostics.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 22 | | |
| 152 | src/__Libraries/StellaOps.Cryptography/CryptoProviderMetrics.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 31 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 153 | src/__Libraries/StellaOps.Cryptography/CryptoProviderRegistry.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 155 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 154 | src/__Libraries/StellaOps.Cryptography/CryptoRegistryProfiles.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 47 | | |
| 155 | src/__Libraries/StellaOps.Cryptography/CryptoSigningKey.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 224 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 156 | src/__Libraries/StellaOps.Cryptography/DefaultCryptoHash.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 369 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 157 | src/__Libraries/StellaOps.Cryptography/DefaultCryptoHasher.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 40 | | |
| 158 | src/__Libraries/StellaOps.Cryptography/DefaultCryptoHmac.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 325 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 159 | src/__Libraries/StellaOps.Cryptography/DefaultCryptoProvider.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 193 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 160 | src/__Libraries/StellaOps.Cryptography/EcdsaSigner.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 102 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 161 | src/__Libraries/StellaOps.Cryptography/GostDigestUtilities.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 26 | | |
| 162 | src/__Libraries/StellaOps.Cryptography/GostSignatureEncoding.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 128 | FileLength>100 | Split file to stay <= 100 lines. |
| 163 | src/__Libraries/StellaOps.Cryptography/GostSignatureFormat.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 14 | | |
| 164 | src/__Libraries/StellaOps.Cryptography/HashAlgorithms.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 29 | ConstNaming | Rename consts to PascalCase. |
| 165 | src/__Libraries/StellaOps.Cryptography/HashPurpose.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 75 | | |
| 166 | src/__Libraries/StellaOps.Cryptography/HmacAlgorithms.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 56 | | |
| 167 | src/__Libraries/StellaOps.Cryptography/HmacPurpose.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 47 | | |
| 168 | src/__Libraries/StellaOps.Cryptography/ICryptoHash.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 117 | FileLength>100 | Split file to stay <= 100 lines. |
| 169 | src/__Libraries/StellaOps.Cryptography/ICryptoHmac.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 116 | FileLength>100 | Split file to stay <= 100 lines. |
| 170 | src/__Libraries/StellaOps.Cryptography/ICryptoSigner.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 47 | | |
| 171 | src/__Libraries/StellaOps.Cryptography/LibsodiumCryptoProvider.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 129 | FileLength>100; PrivateFieldNaming; UsingNotSorted | Rename private fields to _camelCase.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 172 | src/__Libraries/StellaOps.Cryptography/PasswordHashAlgorithms.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 24 | | |
| 173 | src/__Libraries/StellaOps.Cryptography/PasswordHashing.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 82 | | |
| 174 | src/__Libraries/StellaOps.Cryptography/Pbkdf2PasswordHasher.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 138 | FileLength>100 | Split file to stay <= 100 lines. |
| 175 | src/__Libraries/StellaOps.Cryptography/SignatureAlgorithms.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 25 | ConstNaming | Rename consts to PascalCase. |
| 176 | src/__Libraries/StellaOps.Cryptography/Audit/AuthEventRecord.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | FAIL | 279 | FileLength>100 | Split file to stay <= 100 lines. |
| 177 | src/__Libraries/StellaOps.Cryptography/Digests/Sha256Digest.cs | src/__Libraries/StellaOps.Cryptography/StellaOps.Cryptography.csproj | __Libraries | PASS | 94 | | |
| 178 | src/__Libraries/StellaOps.DeltaVerdict/Bundles/GateEvaluator.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 393 | FileLength>100 | Split file to stay <= 100 lines. |
| 179 | src/__Libraries/StellaOps.DeltaVerdict/Bundles/IGateEvaluator.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | PASS | 41 | | |
| 180 | src/__Libraries/StellaOps.DeltaVerdict/Bundles/IVerdictBundleBuilder.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | PASS | 41 | | |
| 181 | src/__Libraries/StellaOps.DeltaVerdict/Bundles/VerdictBundle.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 535 | FileLength>100 | Split file to stay <= 100 lines. |
| 182 | src/__Libraries/StellaOps.DeltaVerdict/Bundles/VerdictBundleBuilder.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 481 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 183 | src/__Libraries/StellaOps.DeltaVerdict/Bundles/VerdictRekorAnchorService.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 462 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 184 | src/__Libraries/StellaOps.DeltaVerdict/Bundles/VerdictSigningService.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 483 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 185 | src/__Libraries/StellaOps.DeltaVerdict/Engine/DeltaComputationEngine.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 298 | FileLength>100 | Split file to stay <= 100 lines. |
| 186 | src/__Libraries/StellaOps.DeltaVerdict/Inputs/PinnedInput.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 273 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 187 | src/__Libraries/StellaOps.DeltaVerdict/Manifest/ScoringManifest.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 303 | FileLength>100 | Split file to stay <= 100 lines. |
| 188 | src/__Libraries/StellaOps.DeltaVerdict/Manifest/ScoringManifestVersioner.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 461 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 189 | src/__Libraries/StellaOps.DeltaVerdict/Models/DeltaVerdict.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 159 | FileLength>100 | Split file to stay <= 100 lines. |
| 190 | src/__Libraries/StellaOps.DeltaVerdict/Models/Verdict.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | PASS | 30 | | |
| 191 | src/__Libraries/StellaOps.DeltaVerdict/Oci/DeltaOciAttacher.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | PASS | 45 | | |
| 192 | src/__Libraries/StellaOps.DeltaVerdict/Policy/RiskBudgetEvaluator.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 91 | BlockingAsync | Replace .Result/.Wait/GetAwaiter().GetResult() with await. |
| 193 | src/__Libraries/StellaOps.DeltaVerdict/Serialization/DeltaVerdictSerializer.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 46 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 194 | src/__Libraries/StellaOps.DeltaVerdict/Serialization/VerdictInputsSerializer.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 351 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 195 | src/__Libraries/StellaOps.DeltaVerdict/Serialization/VerdictSerializer.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 46 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 196 | src/__Libraries/StellaOps.DeltaVerdict/Signing/DeltaSigningService.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 207 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 197 | src/__Libraries/StellaOps.DeltaVerdict/Signing/ScoringManifestRekorAnchorService.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 502 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 198 | src/__Libraries/StellaOps.DeltaVerdict/Signing/ScoringManifestSigningService.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 398 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 199 | src/__Libraries/StellaOps.DeltaVerdict/Trust/IScoringTrustProvider.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 221 | FileLength>100 | Split file to stay <= 100 lines. |
| 200 | src/__Libraries/StellaOps.DeltaVerdict/Trust/ScoringTrustProvider.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 362 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 201 | src/__Libraries/StellaOps.DeltaVerdict/Trust/TrustServiceCollectionExtensions.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | PASS | 81 | | |
| 202 | src/__Libraries/StellaOps.DeltaVerdict/Validation/AdversarialInputValidator.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 415 | FileLength>100 | Split file to stay <= 100 lines. |
| 203 | src/__Libraries/StellaOps.DeltaVerdict/Validation/IAdversarialInputValidator.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 315 | FileLength>100 | Split file to stay <= 100 lines. |
| 204 | src/__Libraries/StellaOps.DeltaVerdict/Validation/ValidationServiceCollectionExtensions.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | PASS | 71 | | |
| 205 | src/__Libraries/StellaOps.DeltaVerdict/__Tests/StellaOps.DeltaVerdict.Tests/Serialization/VerdictInputsGoldenSnapshotTests.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 399 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 206 | src/__Libraries/StellaOps.DeltaVerdict/__Tests/StellaOps.DeltaVerdict.Tests/Serialization/VerdictInputsSerializerTests.cs | src/__Libraries/StellaOps.DeltaVerdict/StellaOps.DeltaVerdict.csproj | __Libraries | FAIL | 458 | FileLength>100 | Split file to stay <= 100 lines. |
| 207 | src/__Libraries/StellaOps.DependencyInjection/IDependencyInjectionRoutine.cs | src/__Libraries/StellaOps.DependencyInjection/StellaOps.DependencyInjection.csproj | __Libraries | PASS | 11 | | |
| 208 | src/__Libraries/StellaOps.DependencyInjection/ServiceBindingAttribute.cs | src/__Libraries/StellaOps.DependencyInjection/StellaOps.DependencyInjection.csproj | __Libraries | PASS | 66 | | |
| 209 | src/__Libraries/StellaOps.DependencyInjection/Validation/FailFastOptionsExtensions.cs | src/__Libraries/StellaOps.DependencyInjection/StellaOps.DependencyInjection.csproj | __Libraries | FAIL | 122 | FileLength>100 | Split file to stay <= 100 lines. |
| 210 | src/__Libraries/StellaOps.DependencyInjection/Validation/OptionsValidationHostedService.cs | src/__Libraries/StellaOps.DependencyInjection/StellaOps.DependencyInjection.csproj | __Libraries | PASS | 30 | | |
| 211 | src/__Libraries/StellaOps.DependencyInjection/Validation/OptionsValidatorBase.cs | src/__Libraries/StellaOps.DependencyInjection/StellaOps.DependencyInjection.csproj | __Libraries | FAIL | 184 | FileLength>100 | Split file to stay <= 100 lines. |
| 212 | src/__Libraries/StellaOps.Determinism.Abstractions/DeterminismServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Determinism.Abstractions/StellaOps.Determinism.Abstractions.csproj | __Libraries | PASS | 40 | | |
| 213 | src/__Libraries/StellaOps.Determinism.Abstractions/IGuidProvider.cs | src/__Libraries/StellaOps.Determinism.Abstractions/StellaOps.Determinism.Abstractions.csproj | __Libraries | PASS | 65 | | |
| 214 | src/__Libraries/StellaOps.Determinism.Abstractions/ResolverBoundaryAttribute.cs | src/__Libraries/StellaOps.Determinism.Abstractions/StellaOps.Determinism.Abstractions.csproj | __Libraries | PASS | 81 | | |
| 215 | src/__Libraries/StellaOps.DistroIntel/DistroDerivative.cs | src/__Libraries/StellaOps.DistroIntel/StellaOps.DistroIntel.csproj | __Libraries | FAIL | 186 | FileLength>100 | Split file to stay <= 100 lines. |
| 216 | src/__Libraries/StellaOps.Doctor/DependencyInjection/DoctorServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 85 | | |
| 217 | src/__Libraries/StellaOps.Doctor/Detection/IRuntimeDetector.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 49 | | |
| 218 | src/__Libraries/StellaOps.Doctor/Detection/RuntimeDetector.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 341 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 219 | src/__Libraries/StellaOps.Doctor/Detection/RuntimeEnvironment.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 27 | | |
| 220 | src/__Libraries/StellaOps.Doctor/Engine/CheckExecutor.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 217 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 221 | src/__Libraries/StellaOps.Doctor/Engine/CheckRegistry.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 213 | FileLength>100 | Split file to stay <= 100 lines. |
| 222 | src/__Libraries/StellaOps.Doctor/Engine/DoctorCheckProgress.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 35 | | |
| 223 | src/__Libraries/StellaOps.Doctor/Engine/DoctorEngine.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 216 | ConfigureAwaitMissing; FileLength>100; ServiceLocator | Add ConfigureAwait(false) to awaited calls in library-like code.; Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 224 | src/__Libraries/StellaOps.Doctor/Export/ConfigurationSanitizer.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 113 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 225 | src/__Libraries/StellaOps.Doctor/Export/DiagnosticBundle.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 148 | FileLength>100 | Split file to stay <= 100 lines. |
| 226 | src/__Libraries/StellaOps.Doctor/Export/DiagnosticBundleGenerator.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 342 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 227 | src/__Libraries/StellaOps.Doctor/Export/DiagnosticBundleOptions.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 38 | | |
| 228 | src/__Libraries/StellaOps.Doctor/Models/CheckResult.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 45 | | |
| 229 | src/__Libraries/StellaOps.Doctor/Models/CommandType.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 23 | | |
| 230 | src/__Libraries/StellaOps.Doctor/Models/DoctorCheckResult.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 63 | | |
| 231 | src/__Libraries/StellaOps.Doctor/Models/DoctorReport.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 112 | FileLength>100 | Split file to stay <= 100 lines. |
| 232 | src/__Libraries/StellaOps.Doctor/Models/DoctorRunOptions.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 98 | | |
| 233 | src/__Libraries/StellaOps.Doctor/Models/DoctorSeverity.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 67 | | |
| 234 | src/__Libraries/StellaOps.Doctor/Models/Evidence.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 36 | | |
| 235 | src/__Libraries/StellaOps.Doctor/Models/LikelyCause.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 37 | | |
| 236 | src/__Libraries/StellaOps.Doctor/Models/RemediationCommand.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 98 | | |
| 237 | src/__Libraries/StellaOps.Doctor/Models/RemediationStep.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 86 | | |
| 238 | src/__Libraries/StellaOps.Doctor/Output/DoctorEvidenceArtifacts.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 18 | | |
| 239 | src/__Libraries/StellaOps.Doctor/Output/DoctorEvidenceLogWriter.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 406 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 240 | src/__Libraries/StellaOps.Doctor/Output/IDoctorReportFormatter.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 72 | | |
| 241 | src/__Libraries/StellaOps.Doctor/Output/JsonReportFormatter.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 245 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 242 | src/__Libraries/StellaOps.Doctor/Output/MarkdownReportFormatter.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 307 | FileLength>100 | Split file to stay <= 100 lines. |
| 243 | src/__Libraries/StellaOps.Doctor/Output/ReportFormatterFactory.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 63 | | |
| 244 | src/__Libraries/StellaOps.Doctor/Output/TextReportFormatter.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 224 | FileLength>100 | Split file to stay <= 100 lines. |
| 245 | src/__Libraries/StellaOps.Doctor/Packs/DoctorPackCheck.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 509 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 246 | src/__Libraries/StellaOps.Doctor/Packs/DoctorPackCommandRunner.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 245 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 247 | src/__Libraries/StellaOps.Doctor/Packs/DoctorPackLoader.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 606 | FileLength>100; PrivateFieldNaming; ServiceLocator | Remove service locator usage; use constructor injection.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 248 | src/__Libraries/StellaOps.Doctor/Packs/DoctorPackModels.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 101 | FileLength>100 | Split file to stay <= 100 lines. |
| 249 | src/__Libraries/StellaOps.Doctor/Packs/DoctorPackPlugin.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 136 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 250 | src/__Libraries/StellaOps.Doctor/Plugins/DoctorCategory.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 94 | | |
| 251 | src/__Libraries/StellaOps.Doctor/Plugins/DoctorPluginContext.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 104 | FileLength>100 | Split file to stay <= 100 lines. |
| 252 | src/__Libraries/StellaOps.Doctor/Plugins/IDoctorCheck.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 98 | | |
| 253 | src/__Libraries/StellaOps.Doctor/Plugins/IDoctorPlugin.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 95 | | |
| 254 | src/__Libraries/StellaOps.Doctor/Plugins/Builders/CheckResultBuilder.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 193 | FileLength>100 | Split file to stay <= 100 lines. |
| 255 | src/__Libraries/StellaOps.Doctor/Plugins/Builders/EvidenceBuilder.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 141 | FileLength>100 | Split file to stay <= 100 lines. |
| 256 | src/__Libraries/StellaOps.Doctor/Plugins/Builders/RemediationBuilder.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 160 | FileLength>100 | Split file to stay <= 100 lines. |
| 257 | src/__Libraries/StellaOps.Doctor/Remediation/IPlaceholderResolver.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | PASS | 62 | | |
| 258 | src/__Libraries/StellaOps.Doctor/Remediation/IVerificationExecutor.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 116 | FileLength>100 | Split file to stay <= 100 lines. |
| 259 | src/__Libraries/StellaOps.Doctor/Remediation/PlaceholderResolver.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 159 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 260 | src/__Libraries/StellaOps.Doctor/Remediation/VerificationExecutor.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 194 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 261 | src/__Libraries/StellaOps.Doctor/__Tests/StellaOps.Doctor.Tests/Plugins/Builders/RemediationBuilderTests.cs | src/__Libraries/StellaOps.Doctor/StellaOps.Doctor.csproj | __Libraries | FAIL | 145 | FileLength>100 | Split file to stay <= 100 lines. |
| 262 | src/__Libraries/StellaOps.Eventing/AssemblyInfo.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | PASS | 4 | | |
| 263 | src/__Libraries/StellaOps.Eventing/EventingOptions.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | PASS | 66 | | |
| 264 | src/__Libraries/StellaOps.Eventing/ITimelineEventEmitter.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | PASS | 37 | | |
| 265 | src/__Libraries/StellaOps.Eventing/ServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | FAIL | 142 | FileLength>100 | Split file to stay <= 100 lines. |
| 266 | src/__Libraries/StellaOps.Eventing/TimelineEventEmitter.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | FAIL | 155 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 267 | src/__Libraries/StellaOps.Eventing/Internal/EventIdGenerator.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | FAIL | 58 | UsingInsideNamespace | Move using directives outside namespace. |
| 268 | src/__Libraries/StellaOps.Eventing/Models/TimelineEvent.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | FAIL | 177 | FileLength>100 | Split file to stay <= 100 lines. |
| 269 | src/__Libraries/StellaOps.Eventing/Outbox/TimelineOutboxProcessor.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | FAIL | 189 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 270 | src/__Libraries/StellaOps.Eventing/Signing/IEventSigner.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | PASS | 39 | | |
| 271 | src/__Libraries/StellaOps.Eventing/Storage/InMemoryTimelineEventStore.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | FAIL | 128 | FileLength>100 | Split file to stay <= 100 lines. |
| 272 | src/__Libraries/StellaOps.Eventing/Storage/ITimelineEventStore.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | PASS | 87 | | |
| 273 | src/__Libraries/StellaOps.Eventing/Storage/PostgresTimelineEventStore.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | FAIL | 314 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 274 | src/__Libraries/StellaOps.Eventing/Telemetry/EventingTelemetry.cs | src/__Libraries/StellaOps.Eventing/StellaOps.Eventing.csproj | __Libraries | FAIL | 112 | FileLength>100 | Split file to stay <= 100 lines. |
| 275 | src/__Libraries/StellaOps.Evidence.Bundle/BinaryDiffEvidence.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | FAIL | 368 | FileLength>100 | Split file to stay <= 100 lines. |
| 276 | src/__Libraries/StellaOps.Evidence.Bundle/CallStackEvidence.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 24 | | |
| 277 | src/__Libraries/StellaOps.Evidence.Bundle/DiffEvidence.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 27 | | |
| 278 | src/__Libraries/StellaOps.Evidence.Bundle/EvidenceBundle.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 57 | | |
| 279 | src/__Libraries/StellaOps.Evidence.Bundle/EvidenceBundleBuilder.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 63 | | |
| 280 | src/__Libraries/StellaOps.Evidence.Bundle/EvidenceBundlePredicate.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 16 | | |
| 281 | src/__Libraries/StellaOps.Evidence.Bundle/EvidenceHashSet.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 38 | | |
| 282 | src/__Libraries/StellaOps.Evidence.Bundle/EvidenceStatus.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 17 | | |
| 283 | src/__Libraries/StellaOps.Evidence.Bundle/EvidenceStatusSummary.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 18 | | |
| 284 | src/__Libraries/StellaOps.Evidence.Bundle/GraphRevisionEvidence.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 15 | | |
| 285 | src/__Libraries/StellaOps.Evidence.Bundle/ProvenanceEvidence.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 45 | | |
| 286 | src/__Libraries/StellaOps.Evidence.Bundle/ReachabilityEvidence.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 34 | | |
| 287 | src/__Libraries/StellaOps.Evidence.Bundle/ServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 25 | | |
| 288 | src/__Libraries/StellaOps.Evidence.Bundle/VexStatusEvidence.cs | src/__Libraries/StellaOps.Evidence.Bundle/StellaOps.Evidence.Bundle.csproj | __Libraries | PASS | 22 | | |
| 289 | src/__Libraries/StellaOps.Evidence.Core/EvidenceProvenance.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | PASS | 67 | | |
| 290 | src/__Libraries/StellaOps.Evidence.Core/EvidenceRecord.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | FAIL | 125 | FileLength>100 | Split file to stay <= 100 lines. |
| 291 | src/__Libraries/StellaOps.Evidence.Core/EvidenceSignature.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | PASS | 50 | | |
| 292 | src/__Libraries/StellaOps.Evidence.Core/EvidenceType.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | PASS | 93 | | |
| 293 | src/__Libraries/StellaOps.Evidence.Core/IEvidence.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | PASS | 57 | | |
| 294 | src/__Libraries/StellaOps.Evidence.Core/IEvidenceStore.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | PASS | 83 | | |
| 295 | src/__Libraries/StellaOps.Evidence.Core/InMemoryEvidenceStore.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | FAIL | 168 | FileLength>100 | Split file to stay <= 100 lines. |
| 296 | src/__Libraries/StellaOps.Evidence.Core/SignerType.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | PASS | 32 | | |
| 297 | src/__Libraries/StellaOps.Evidence.Core/Adapters/EvidenceAdapterBase.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | PASS | 59 | | |
| 298 | src/__Libraries/StellaOps.Evidence.Core/Adapters/EvidenceBundleAdapter.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | FAIL | 371 | FileLength>100 | Split file to stay <= 100 lines. |
| 299 | src/__Libraries/StellaOps.Evidence.Core/Adapters/EvidenceStatementAdapter.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | FAIL | 149 | FileLength>100 | Split file to stay <= 100 lines. |
| 300 | src/__Libraries/StellaOps.Evidence.Core/Adapters/ExceptionApplicationAdapter.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | PASS | 100 | | |
| 301 | src/__Libraries/StellaOps.Evidence.Core/Adapters/IEvidenceAdapter.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | PASS | 27 | | |
| 302 | src/__Libraries/StellaOps.Evidence.Core/Adapters/ProofSegmentAdapter.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | FAIL | 145 | FileLength>100 | Split file to stay <= 100 lines. |
| 303 | src/__Libraries/StellaOps.Evidence.Core/Adapters/VexObservationAdapter.cs | src/__Libraries/StellaOps.Evidence.Core/StellaOps.Evidence.Core.csproj | __Libraries | FAIL | 249 | FileLength>100 | Split file to stay <= 100 lines. |
| 304 | src/__Libraries/StellaOps.Evidence.Pack/EvidenceCardService.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 403 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 305 | src/__Libraries/StellaOps.Evidence.Pack/EvidencePackService.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 553 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 306 | src/__Libraries/StellaOps.Evidence.Pack/EvidenceResolver.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 258 | FileLength>100 | Split file to stay <= 100 lines. |
| 307 | src/__Libraries/StellaOps.Evidence.Pack/IEvidenceCardService.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 138 | FileLength>100 | Split file to stay <= 100 lines. |
| 308 | src/__Libraries/StellaOps.Evidence.Pack/IEvidencePackService.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 135 | FileLength>100 | Split file to stay <= 100 lines. |
| 309 | src/__Libraries/StellaOps.Evidence.Pack/IEvidencePackSigner.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | PASS | 73 | | |
| 310 | src/__Libraries/StellaOps.Evidence.Pack/IEvidencePackStore.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | PASS | 53 | | |
| 311 | src/__Libraries/StellaOps.Evidence.Pack/IEvidenceResolver.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | PASS | 59 | | |
| 312 | src/__Libraries/StellaOps.Evidence.Pack/ServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 131 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 313 | src/__Libraries/StellaOps.Evidence.Pack/Models/EvidenceCard.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 304 | FileLength>100 | Split file to stay <= 100 lines. |
| 314 | src/__Libraries/StellaOps.Evidence.Pack/Models/EvidencePack.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 349 | FileLength>100 | Split file to stay <= 100 lines. |
| 315 | src/__Libraries/StellaOps.Evidence.Pack/Models/SignedEvidencePack.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 147 | FileLength>100 | Split file to stay <= 100 lines. |
| 316 | src/__Libraries/StellaOps.Evidence.Pack/Resolvers/NullTypeResolver.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | PASS | 77 | | |
| 317 | src/__Libraries/StellaOps.Evidence.Pack/Storage/InMemoryEvidencePackStore.cs | src/__Libraries/StellaOps.Evidence.Pack/StellaOps.Evidence.Pack.csproj | __Libraries | FAIL | 152 | FileLength>100 | Split file to stay <= 100 lines. |
| 318 | src/__Libraries/StellaOps.Evidence.Persistence/EfCore/Context/EvidenceDbContext.cs | src/__Libraries/StellaOps.Evidence.Persistence/StellaOps.Evidence.Persistence.csproj | __Libraries | PASS | 22 | | |
| 319 | src/__Libraries/StellaOps.Evidence.Persistence/Extensions/EvidencePersistenceExtensions.cs | src/__Libraries/StellaOps.Evidence.Persistence/StellaOps.Evidence.Persistence.csproj | __Libraries | PASS | 43 | | |
| 320 | src/__Libraries/StellaOps.Evidence.Persistence/Postgres/EvidenceDataSource.cs | src/__Libraries/StellaOps.Evidence.Persistence/StellaOps.Evidence.Persistence.csproj | __Libraries | PASS | 40 | | |
| 321 | src/__Libraries/StellaOps.Evidence.Persistence/Postgres/PostgresEvidenceStore.cs | src/__Libraries/StellaOps.Evidence.Persistence/StellaOps.Evidence.Persistence.csproj | __Libraries | FAIL | 332 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 322 | src/__Libraries/StellaOps.Evidence.Persistence/Postgres/PostgresEvidenceStoreFactory.cs | src/__Libraries/StellaOps.Evidence.Persistence/StellaOps.Evidence.Persistence.csproj | __Libraries | PASS | 42 | | |
| 323 | src/__Libraries/StellaOps.Evidence/Budgets/EvidenceBudget.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | FAIL | 120 | FileLength>100 | Split file to stay <= 100 lines. |
| 324 | src/__Libraries/StellaOps.Evidence/Budgets/EvidenceBudgetService.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | FAIL | 254 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 325 | src/__Libraries/StellaOps.Evidence/Models/EvidenceIndex.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | FAIL | 103 | FileLength>100 | Split file to stay <= 100 lines. |
| 326 | src/__Libraries/StellaOps.Evidence/Models/ProofRecord.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | FAIL | 114 | FileLength>100 | Split file to stay <= 100 lines. |
| 327 | src/__Libraries/StellaOps.Evidence/Models/ProofStrength.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | PASS | 56 | | |
| 328 | src/__Libraries/StellaOps.Evidence/Models/ProofStrengthExtensions.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | PASS | 89 | | |
| 329 | src/__Libraries/StellaOps.Evidence/Retention/RetentionTierManager.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | FAIL | 154 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 330 | src/__Libraries/StellaOps.Evidence/Serialization/EvidenceIndexSerializer.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | FAIL | 53 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 331 | src/__Libraries/StellaOps.Evidence/Services/EvidenceLinker.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | FAIL | 185 | FileLength>100 | Split file to stay <= 100 lines. |
| 332 | src/__Libraries/StellaOps.Evidence/Services/EvidenceQueryService.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | PASS | 75 | | |
| 333 | src/__Libraries/StellaOps.Evidence/Validation/EvidenceIndexValidator.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | FAIL | 97 | UsingInsideNamespace | Move using directives outside namespace. |
| 334 | src/__Libraries/StellaOps.Evidence/Validation/SchemaLoader.cs | src/__Libraries/StellaOps.Evidence/StellaOps.Evidence.csproj | __Libraries | FAIL | 29 | UsingInsideNamespace | Move using directives outside namespace. |
| 335 | src/__Libraries/StellaOps.Facet/BuiltInFacets.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 167 | FileLength>100 | Split file to stay <= 100 lines. |
| 336 | src/__Libraries/StellaOps.Facet/DefaultCryptoHash.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 54 | | |
| 337 | src/__Libraries/StellaOps.Facet/FacetCategory.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 47 | | |
| 338 | src/__Libraries/StellaOps.Facet/FacetClassifier.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 92 | | |
| 339 | src/__Libraries/StellaOps.Facet/FacetDefinition.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 56 | | |
| 340 | src/__Libraries/StellaOps.Facet/FacetDrift.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 133 | FileLength>100 | Split file to stay <= 100 lines. |
| 341 | src/__Libraries/StellaOps.Facet/FacetDriftDetector.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 355 | FileLength>100 | Split file to stay <= 100 lines. |
| 342 | src/__Libraries/StellaOps.Facet/FacetDriftVexEmitter.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 350 | FileLength>100 | Split file to stay <= 100 lines. |
| 343 | src/__Libraries/StellaOps.Facet/FacetDriftVexServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 74 | | |
| 344 | src/__Libraries/StellaOps.Facet/FacetDriftVexWorkflow.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 271 | FileLength>100 | Split file to stay <= 100 lines. |
| 345 | src/__Libraries/StellaOps.Facet/FacetEntry.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 60 | | |
| 346 | src/__Libraries/StellaOps.Facet/FacetExtractionOptions.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 79 | | |
| 347 | src/__Libraries/StellaOps.Facet/FacetExtractionResult.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 87 | | |
| 348 | src/__Libraries/StellaOps.Facet/FacetFileEntry.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 19 | | |
| 349 | src/__Libraries/StellaOps.Facet/FacetFileModification.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 27 | | |
| 350 | src/__Libraries/StellaOps.Facet/FacetMerkleTree.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 195 | FileLength>100 | Split file to stay <= 100 lines. |
| 351 | src/__Libraries/StellaOps.Facet/FacetQuota.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 66 | | |
| 352 | src/__Libraries/StellaOps.Facet/FacetSeal.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 115 | FileLength>100 | Split file to stay <= 100 lines. |
| 353 | src/__Libraries/StellaOps.Facet/FacetSealer.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 122 | FileLength>100 | Split file to stay <= 100 lines. |
| 354 | src/__Libraries/StellaOps.Facet/FacetServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 156 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 355 | src/__Libraries/StellaOps.Facet/GlobFacetExtractor.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 381 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 356 | src/__Libraries/StellaOps.Facet/GlobMatcher.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 71 | | |
| 357 | src/__Libraries/StellaOps.Facet/ICryptoHash.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 33 | | |
| 358 | src/__Libraries/StellaOps.Facet/IFacet.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 61 | | |
| 359 | src/__Libraries/StellaOps.Facet/IFacetDriftDetector.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 36 | | |
| 360 | src/__Libraries/StellaOps.Facet/IFacetDriftVexDraftStore.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 330 | FileLength>100 | Split file to stay <= 100 lines. |
| 361 | src/__Libraries/StellaOps.Facet/IFacetExtractor.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 48 | | |
| 362 | src/__Libraries/StellaOps.Facet/IFacetSealStore.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 110 | FileLength>100 | Split file to stay <= 100 lines. |
| 363 | src/__Libraries/StellaOps.Facet/InMemoryFacetSealStore.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 239 | FileLength>100 | Split file to stay <= 100 lines. |
| 364 | src/__Libraries/StellaOps.Facet/QuotaExceededAction.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | PASS | 53 | | |
| 365 | src/__Libraries/StellaOps.Facet/Serialization/FacetSealJsonConverter.cs | src/__Libraries/StellaOps.Facet/StellaOps.Facet.csproj | __Libraries | FAIL | 144 | FileLength>100 | Split file to stay <= 100 lines. |
| 366 | src/__Libraries/StellaOps.FeatureFlags/CompositeFeatureFlagService.cs | src/__Libraries/StellaOps.FeatureFlags/StellaOps.FeatureFlags.csproj | __Libraries | FAIL | 304 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 367 | src/__Libraries/StellaOps.FeatureFlags/FeatureFlagModels.cs | src/__Libraries/StellaOps.FeatureFlags/StellaOps.FeatureFlags.csproj | __Libraries | PASS | 97 | | |
| 368 | src/__Libraries/StellaOps.FeatureFlags/FeatureFlagServiceCollectionExtensions.cs | src/__Libraries/StellaOps.FeatureFlags/StellaOps.FeatureFlags.csproj | __Libraries | FAIL | 177 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 369 | src/__Libraries/StellaOps.FeatureFlags/IFeatureFlagProvider.cs | src/__Libraries/StellaOps.FeatureFlags/StellaOps.FeatureFlags.csproj | __Libraries | FAIL | 100 | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
| 370 | src/__Libraries/StellaOps.FeatureFlags/IFeatureFlagService.cs | src/__Libraries/StellaOps.FeatureFlags/StellaOps.FeatureFlags.csproj | __Libraries | PASS | 75 | | |
| 371 | src/__Libraries/StellaOps.FeatureFlags/Providers/ConfigurationFeatureFlagProvider.cs | src/__Libraries/StellaOps.FeatureFlags/StellaOps.FeatureFlags.csproj | __Libraries | FAIL | 240 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 372 | src/__Libraries/StellaOps.FeatureFlags/Providers/SettingsStoreFeatureFlagProvider.cs | src/__Libraries/StellaOps.FeatureFlags/StellaOps.FeatureFlags.csproj | __Libraries | FAIL | 243 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 373 | src/__Libraries/StellaOps.HybridLogicalClock.Benchmarks/ConcurrentHlcBenchmarks.cs | src/__Libraries/StellaOps.HybridLogicalClock.Benchmarks/StellaOps.HybridLogicalClock.Benchmarks.csproj | __Libraries | PASS | 92 | | |
| 374 | src/__Libraries/StellaOps.HybridLogicalClock.Benchmarks/HlcBenchmarks.cs | src/__Libraries/StellaOps.HybridLogicalClock.Benchmarks/StellaOps.HybridLogicalClock.Benchmarks.csproj | __Libraries | FAIL | 107 | FileLength>100 | Split file to stay <= 100 lines. |
| 375 | src/__Libraries/StellaOps.HybridLogicalClock.Benchmarks/HlcTimestampBenchmarks.cs | src/__Libraries/StellaOps.HybridLogicalClock.Benchmarks/StellaOps.HybridLogicalClock.Benchmarks.csproj | __Libraries | FAIL | 133 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 376 | src/__Libraries/StellaOps.HybridLogicalClock.Benchmarks/Program.cs | src/__Libraries/StellaOps.HybridLogicalClock.Benchmarks/StellaOps.HybridLogicalClock.Benchmarks.csproj | __Libraries | PASS | 32 | | |
| 377 | src/__Libraries/StellaOps.HybridLogicalClock/HlcClockSkewException.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | PASS | 50 | | |
| 378 | src/__Libraries/StellaOps.HybridLogicalClock/HlcOptions.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | PASS | 78 | | |
| 379 | src/__Libraries/StellaOps.HybridLogicalClock/HlcServiceCollectionExtensions.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | FAIL | 128 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 380 | src/__Libraries/StellaOps.HybridLogicalClock/HlcTimestamp.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | FAIL | 207 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 381 | src/__Libraries/StellaOps.HybridLogicalClock/HlcTimestampJsonConverter.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | FAIL | 176 | FileLength>100 | Split file to stay <= 100 lines. |
| 382 | src/__Libraries/StellaOps.HybridLogicalClock/HlcTimestampTypeHandler.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | FAIL | 214 | FileLength>100 | Split file to stay <= 100 lines. |
| 383 | src/__Libraries/StellaOps.HybridLogicalClock/HybridLogicalClock.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | FAIL | 318 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 384 | src/__Libraries/StellaOps.HybridLogicalClock/IHlcStateStore.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | PASS | 45 | | |
| 385 | src/__Libraries/StellaOps.HybridLogicalClock/IHybridLogicalClock.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | PASS | 55 | | |
| 386 | src/__Libraries/StellaOps.HybridLogicalClock/InMemoryHlcStateStore.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | PASS | 85 | | |
| 387 | src/__Libraries/StellaOps.HybridLogicalClock/PostgresHlcStateStore.cs | src/__Libraries/StellaOps.HybridLogicalClock/StellaOps.HybridLogicalClock.csproj | __Libraries | FAIL | 229 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 388 | src/__Libraries/StellaOps.Infrastructure.EfCore/Context/StellaOpsDbContextBase.cs | src/__Libraries/StellaOps.Infrastructure.EfCore/StellaOps.Infrastructure.EfCore.csproj | __Libraries | FAIL | 65 | AsyncNaming; ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async. |
| 389 | src/__Libraries/StellaOps.Infrastructure.EfCore/Extensions/DbContextServiceExtensions.cs | src/__Libraries/StellaOps.Infrastructure.EfCore/StellaOps.Infrastructure.EfCore.csproj | __Libraries | FAIL | 156 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 390 | src/__Libraries/StellaOps.Infrastructure.EfCore/Interceptors/TenantConnectionInterceptor.cs | src/__Libraries/StellaOps.Infrastructure.EfCore/StellaOps.Infrastructure.EfCore.csproj | __Libraries | FAIL | 122 | BlockingAsync; FileLength>100 | Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 391 | src/__Libraries/StellaOps.Infrastructure.EfCore/Tenancy/AsyncLocalTenantContextAccessor.cs | src/__Libraries/StellaOps.Infrastructure.EfCore/StellaOps.Infrastructure.EfCore.csproj | __Libraries | PASS | 57 | | |
| 392 | src/__Libraries/StellaOps.Infrastructure.EfCore/Tenancy/ITenantContextAccessor.cs | src/__Libraries/StellaOps.Infrastructure.EfCore/StellaOps.Infrastructure.EfCore.csproj | __Libraries | PASS | 15 | | |
| 393 | src/__Libraries/StellaOps.Infrastructure.EfCore/Tenancy/SystemTenantContextAccessor.cs | src/__Libraries/StellaOps.Infrastructure.EfCore/StellaOps.Infrastructure.EfCore.csproj | __Libraries | PASS | 17 | | |
| 394 | src/__Libraries/StellaOps.Infrastructure.Postgres/ServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | PASS | 42 | | |
| 395 | src/__Libraries/StellaOps.Infrastructure.Postgres/Connections/DataSourceBase.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 256 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 396 | src/__Libraries/StellaOps.Infrastructure.Postgres/Exceptions/PostgresExceptionHelper.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | PASS | 95 | | |
| 397 | src/__Libraries/StellaOps.Infrastructure.Postgres/Migrations/IMigrationRunner.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 182 | FileLength>100 | Split file to stay <= 100 lines. |
| 398 | src/__Libraries/StellaOps.Infrastructure.Postgres/Migrations/MigrationCategory.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | PASS | 89 | | |
| 399 | src/__Libraries/StellaOps.Infrastructure.Postgres/Migrations/MigrationDependency.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 275 | FileLength>100 | Split file to stay <= 100 lines. |
| 400 | src/__Libraries/StellaOps.Infrastructure.Postgres/Migrations/MigrationRunner.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 553 | AsyncNaming; BlockingAsync; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 401 | src/__Libraries/StellaOps.Infrastructure.Postgres/Migrations/MigrationServiceExtensions.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 385 | AsyncNaming; FileLength>100; ServiceLocator; UsingInsideNamespace | Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 402 | src/__Libraries/StellaOps.Infrastructure.Postgres/Migrations/MigrationTelemetry.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 219 | BlockingAsync; FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 403 | src/__Libraries/StellaOps.Infrastructure.Postgres/Migrations/MigrationValidator.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 242 | FileLength>100 | Split file to stay <= 100 lines. |
| 404 | src/__Libraries/StellaOps.Infrastructure.Postgres/Migrations/StartupMigrationHost.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 481 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 405 | src/__Libraries/StellaOps.Infrastructure.Postgres/Options/PostgresOptions.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | PASS | 53 | | |
| 406 | src/__Libraries/StellaOps.Infrastructure.Postgres/Repositories/RepositoryBase.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 320 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 407 | src/__Libraries/StellaOps.Infrastructure.Postgres/Testing/PostgresFixture.cs | src/__Libraries/StellaOps.Infrastructure.Postgres/StellaOps.Infrastructure.Postgres.csproj | __Libraries | FAIL | 283 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 408 | src/__Libraries/StellaOps.Ingestion.Telemetry/IngestionTelemetry.cs | src/__Libraries/StellaOps.Ingestion.Telemetry/StellaOps.Ingestion.Telemetry.csproj | __Libraries | FAIL | 200 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 409 | src/__Libraries/StellaOps.Interop/ToolManager.cs | src/__Libraries/StellaOps.Interop/StellaOps.Interop.csproj | __Libraries | FAIL | 153 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 410 | src/__Libraries/StellaOps.Metrics/Kpi/KpiCollector.cs | src/__Libraries/StellaOps.Metrics/StellaOps.Metrics.csproj | __Libraries | FAIL | 256 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 411 | src/__Libraries/StellaOps.Metrics/Kpi/KpiModels.cs | src/__Libraries/StellaOps.Metrics/StellaOps.Metrics.csproj | __Libraries | FAIL | 217 | FileLength>100 | Split file to stay <= 100 lines. |
| 412 | src/__Libraries/StellaOps.Metrics/Kpi/KpiTrendService.cs | src/__Libraries/StellaOps.Metrics/StellaOps.Metrics.csproj | __Libraries | FAIL | 101 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 413 | src/__Libraries/StellaOps.Metrics/Kpi/Repositories/IFindingRepository.cs | src/__Libraries/StellaOps.Metrics/StellaOps.Metrics.csproj | __Libraries | PASS | 36 | | |
| 414 | src/__Libraries/StellaOps.Metrics/Kpi/Repositories/IKpiRepository.cs | src/__Libraries/StellaOps.Metrics/StellaOps.Metrics.csproj | __Libraries | PASS | 58 | | |
| 415 | src/__Libraries/StellaOps.Metrics/Kpi/Repositories/IReplayRepository.cs | src/__Libraries/StellaOps.Metrics/StellaOps.Metrics.csproj | __Libraries | PASS | 26 | | |
| 416 | src/__Libraries/StellaOps.Metrics/Kpi/Repositories/IVerdictRepository.cs | src/__Libraries/StellaOps.Metrics/StellaOps.Metrics.csproj | __Libraries | PASS | 26 | | |
| 417 | src/__Libraries/StellaOps.Orchestrator.Schemas/AdvisoryEvidenceBundle.cs | src/__Libraries/StellaOps.Orchestrator.Schemas/StellaOps.Orchestrator.Schemas.csproj | __Libraries | PASS | 76 | | |
| 418 | src/__Libraries/StellaOps.Orchestrator.Schemas/OrchestratorEnvelope.cs | src/__Libraries/StellaOps.Orchestrator.Schemas/StellaOps.Orchestrator.Schemas.csproj | __Libraries | PASS | 73 | | |
| 419 | src/__Libraries/StellaOps.Orchestrator.Schemas/ScannerReportReadyPayload.cs | src/__Libraries/StellaOps.Orchestrator.Schemas/StellaOps.Orchestrator.Schemas.csproj | __Libraries | FAIL | 125 | FileLength>100 | Split file to stay <= 100 lines. |
| 420 | src/__Libraries/StellaOps.Orchestrator.Schemas/ScannerScanCompletedPayload.cs | src/__Libraries/StellaOps.Orchestrator.Schemas/StellaOps.Orchestrator.Schemas.csproj | __Libraries | PASS | 59 | | |
| 421 | src/__Libraries/StellaOps.PolicyAuthoritySignals.Contracts/Contracts.cs | src/__Libraries/StellaOps.PolicyAuthoritySignals.Contracts/StellaOps.PolicyAuthoritySignals.Contracts.csproj | __Libraries | PASS | 40 | | |
| 422 | src/__Libraries/StellaOps.Provcache.Postgres/PostgresEvidenceChunkRepository.cs | src/__Libraries/StellaOps.Provcache.Postgres/StellaOps.Provcache.Postgres.csproj | __Libraries | FAIL | 265 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 423 | src/__Libraries/StellaOps.Provcache.Postgres/PostgresProvcacheRepository.cs | src/__Libraries/StellaOps.Provcache.Postgres/StellaOps.Provcache.Postgres.csproj | __Libraries | FAIL | 347 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 424 | src/__Libraries/StellaOps.Provcache.Postgres/ProvcacheDbContext.cs | src/__Libraries/StellaOps.Provcache.Postgres/StellaOps.Provcache.Postgres.csproj | __Libraries | PASS | 59 | | |
| 425 | src/__Libraries/StellaOps.Provcache.Valkey/ValkeyProvcacheStore.cs | src/__Libraries/StellaOps.Provcache.Valkey/StellaOps.Provcache.Valkey.csproj | __Libraries | FAIL | 372 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 426 | src/__Libraries/StellaOps.Provcache/DecisionDigestBuilder.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 344 | FileLength>100 | Split file to stay <= 100 lines. |
| 427 | src/__Libraries/StellaOps.Provcache/IEvidenceChunkRepository.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 204 | FileLength>100 | Split file to stay <= 100 lines. |
| 428 | src/__Libraries/StellaOps.Provcache/IProvcacheRepository.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 138 | FileLength>100 | Split file to stay <= 100 lines. |
| 429 | src/__Libraries/StellaOps.Provcache/IProvcacheService.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 364 | FileLength>100 | Split file to stay <= 100 lines. |
| 430 | src/__Libraries/StellaOps.Provcache/IProvcacheStore.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 151 | FileLength>100 | Split file to stay <= 100 lines. |
| 431 | src/__Libraries/StellaOps.Provcache/ProvcacheOptions.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 151 | FileLength>100 | Split file to stay <= 100 lines. |
| 432 | src/__Libraries/StellaOps.Provcache/ProvcacheService.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 397 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 433 | src/__Libraries/StellaOps.Provcache/ProvcacheServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 115 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 434 | src/__Libraries/StellaOps.Provcache/ProvcacheTelemetry.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 390 | BlockingAsync; FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 435 | src/__Libraries/StellaOps.Provcache/VeriKeyBuilder.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 390 | FileLength>100 | Split file to stay <= 100 lines. |
| 436 | src/__Libraries/StellaOps.Provcache/WriteBehindQueue.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 273 | AsyncNaming; BlockingAsync; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 437 | src/__Libraries/StellaOps.Provcache/Chunking/EvidenceChunker.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 326 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 438 | src/__Libraries/StellaOps.Provcache/Entities/ProvcacheItemEntity.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 218 | FileLength>100 | Split file to stay <= 100 lines. |
| 439 | src/__Libraries/StellaOps.Provcache/Entities/ProvRevocationEntity.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 111 | FileLength>100 | Split file to stay <= 100 lines. |
| 440 | src/__Libraries/StellaOps.Provcache/Events/FeedEpochAdvancedEvent.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 132 | FileLength>100 | Split file to stay <= 100 lines. |
| 441 | src/__Libraries/StellaOps.Provcache/Events/SignerRevokedEvent.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 117 | FileLength>100 | Split file to stay <= 100 lines. |
| 442 | src/__Libraries/StellaOps.Provcache/Export/IMinimalProofExporter.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | PASS | 100 | | |
| 443 | src/__Libraries/StellaOps.Provcache/Export/MinimalProofBundle.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 264 | FileLength>100 | Split file to stay <= 100 lines. |
| 444 | src/__Libraries/StellaOps.Provcache/Export/MinimalProofExporter.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 506 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 445 | src/__Libraries/StellaOps.Provcache/Invalidation/FeedEpochInvalidator.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 185 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 446 | src/__Libraries/StellaOps.Provcache/Invalidation/IProvcacheInvalidator.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | PASS | 67 | | |
| 447 | src/__Libraries/StellaOps.Provcache/Invalidation/SignerSetInvalidator.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 178 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 448 | src/__Libraries/StellaOps.Provcache/LazyFetch/FileChunkFetcher.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 259 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 449 | src/__Libraries/StellaOps.Provcache/LazyFetch/HttpChunkFetcher.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 338 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 450 | src/__Libraries/StellaOps.Provcache/LazyFetch/ILazyEvidenceFetcher.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 132 | FileLength>100 | Split file to stay <= 100 lines. |
| 451 | src/__Libraries/StellaOps.Provcache/LazyFetch/LazyFetchHttpOptions.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | PASS | 34 | | |
| 452 | src/__Libraries/StellaOps.Provcache/LazyFetch/LazyFetchOrchestrator.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 303 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 453 | src/__Libraries/StellaOps.Provcache/Models/DecisionDigest.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 173 | FileLength>100 | Split file to stay <= 100 lines. |
| 454 | src/__Libraries/StellaOps.Provcache/Models/InputManifest.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 246 | FileLength>100 | Split file to stay <= 100 lines. |
| 455 | src/__Libraries/StellaOps.Provcache/Models/ProvcacheEntry.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | PASS | 70 | | |
| 456 | src/__Libraries/StellaOps.Provcache/Oci/ProvcacheOciAttestationBuilder.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 378 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 457 | src/__Libraries/StellaOps.Provcache/Oci/ProvcachePredicateTypes.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 313 | FileLength>100 | Split file to stay <= 100 lines. |
| 458 | src/__Libraries/StellaOps.Provcache/Revocation/InMemoryRevocationLedger.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 139 | FileLength>100 | Split file to stay <= 100 lines. |
| 459 | src/__Libraries/StellaOps.Provcache/Revocation/IRevocationLedger.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 161 | FileLength>100 | Split file to stay <= 100 lines. |
| 460 | src/__Libraries/StellaOps.Provcache/Revocation/RevocationReplayService.cs | src/__Libraries/StellaOps.Provcache/StellaOps.Provcache.csproj | __Libraries | FAIL | 296 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 461 | src/__Libraries/StellaOps.Provenance/DocumentStubs.cs | src/__Libraries/StellaOps.Provenance/StellaOps.Provenance.csproj | __Libraries | FAIL | 176 | FileLength>100 | Split file to stay <= 100 lines. |
| 462 | src/__Libraries/StellaOps.Provenance/DsseProvenanceModels.cs | src/__Libraries/StellaOps.Provenance/StellaOps.Provenance.csproj | __Libraries | PASS | 43 | | |
| 463 | src/__Libraries/StellaOps.Provenance/ProvenanceExtensions.cs | src/__Libraries/StellaOps.Provenance/StellaOps.Provenance.csproj | __Libraries | FAIL | 141 | FileLength>100 | Split file to stay <= 100 lines. |
| 464 | src/__Libraries/StellaOps.Provenance/ProvenanceJsonParser.cs | src/__Libraries/StellaOps.Provenance/StellaOps.Provenance.csproj | __Libraries | FAIL | 205 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 465 | src/__Libraries/StellaOps.Reachability.Core/ConfidenceCalculator.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 153 | FileLength>100 | Split file to stay <= 100 lines. |
| 466 | src/__Libraries/StellaOps.Reachability.Core/EvidenceUriBuilder.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 188 | FileLength>100 | Split file to stay <= 100 lines. |
| 467 | src/__Libraries/StellaOps.Reachability.Core/HybridQueryOptions.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 77 | | |
| 468 | src/__Libraries/StellaOps.Reachability.Core/HybridReachabilityResult.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 237 | FileLength>100 | Split file to stay <= 100 lines. |
| 469 | src/__Libraries/StellaOps.Reachability.Core/IReachabilityIndex.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 120 | FileLength>100 | Split file to stay <= 100 lines. |
| 470 | src/__Libraries/StellaOps.Reachability.Core/IReachGraphAdapter.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 81 | | |
| 471 | src/__Libraries/StellaOps.Reachability.Core/ISignalsAdapter.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 98 | | |
| 472 | src/__Libraries/StellaOps.Reachability.Core/LatticeState.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 85 | | |
| 473 | src/__Libraries/StellaOps.Reachability.Core/NodeHashRecipe.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 212 | FileLength>100 | Split file to stay <= 100 lines. |
| 474 | src/__Libraries/StellaOps.Reachability.Core/PathHashRecipe.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 180 | FileLength>100 | Split file to stay <= 100 lines. |
| 475 | src/__Libraries/StellaOps.Reachability.Core/ReachabilityIndex.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 267 | FileLength>100 | Split file to stay <= 100 lines. |
| 476 | src/__Libraries/StellaOps.Reachability.Core/ReachabilityLattice.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 182 | FileLength>100 | Split file to stay <= 100 lines. |
| 477 | src/__Libraries/StellaOps.Reachability.Core/RuntimeReachabilityResult.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 131 | FileLength>100 | Split file to stay <= 100 lines. |
| 478 | src/__Libraries/StellaOps.Reachability.Core/ServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 47 | | |
| 479 | src/__Libraries/StellaOps.Reachability.Core/StaticReachabilityResult.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 92 | | |
| 480 | src/__Libraries/StellaOps.Reachability.Core/SymbolRef.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 128 | FileLength>100 | Split file to stay <= 100 lines. |
| 481 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/CveSymbolMapping.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 163 | FileLength>100 | Split file to stay <= 100 lines. |
| 482 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/CveSymbolMappingService.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 503 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 483 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/FunctionBoundaryDetector.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 352 | FileLength>100 | Split file to stay <= 100 lines. |
| 484 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/GitDiffExtractor.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 312 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 485 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/ICveSymbolMappingService.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 161 | FileLength>100 | Split file to stay <= 100 lines. |
| 486 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/IOsvEnricher.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 273 | FileLength>100 | Split file to stay <= 100 lines. |
| 487 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/IPatchSymbolExtractor.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 45 | | |
| 488 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/MappingSource.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 34 | | |
| 489 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/OsvEnricher.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 529 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 490 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/PatchAnalysisResult.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 84 | | |
| 491 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/UnifiedDiffParser.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 301 | FileLength>100 | Split file to stay <= 100 lines. |
| 492 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/VulnerabilityType.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 49 | | |
| 493 | src/__Libraries/StellaOps.Reachability.Core/CveMapping/VulnerableSymbol.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 83 | | |
| 494 | src/__Libraries/StellaOps.Reachability.Core/Symbols/CanonicalSymbol.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 141 | FileLength>100 | Split file to stay <= 100 lines. |
| 495 | src/__Libraries/StellaOps.Reachability.Core/Symbols/DotNetSymbolNormalizer.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 204 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 496 | src/__Libraries/StellaOps.Reachability.Core/Symbols/ISymbolCanonicalizer.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 68 | | |
| 497 | src/__Libraries/StellaOps.Reachability.Core/Symbols/ISymbolNormalizer.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 39 | | |
| 498 | src/__Libraries/StellaOps.Reachability.Core/Symbols/JavaSymbolNormalizer.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 230 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 499 | src/__Libraries/StellaOps.Reachability.Core/Symbols/NativeSymbolNormalizer.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 551 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 500 | src/__Libraries/StellaOps.Reachability.Core/Symbols/ProgrammingLanguage.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 67 | | |
| 501 | src/__Libraries/StellaOps.Reachability.Core/Symbols/RawSymbol.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 33 | | |
| 502 | src/__Libraries/StellaOps.Reachability.Core/Symbols/ScriptSymbolNormalizer.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 454 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 503 | src/__Libraries/StellaOps.Reachability.Core/Symbols/SymbolCanonicalizer.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 99 | | |
| 504 | src/__Libraries/StellaOps.Reachability.Core/Symbols/SymbolMatcher.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | FAIL | 229 | FileLength>100 | Split file to stay <= 100 lines. |
| 505 | src/__Libraries/StellaOps.Reachability.Core/Symbols/SymbolMatchOptions.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 76 | | |
| 506 | src/__Libraries/StellaOps.Reachability.Core/Symbols/SymbolMatchResult.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 57 | | |
| 507 | src/__Libraries/StellaOps.Reachability.Core/Symbols/SymbolSource.cs | src/__Libraries/StellaOps.Reachability.Core/StellaOps.Reachability.Core.csproj | __Libraries | PASS | 78 | | |
| 508 | src/__Libraries/StellaOps.ReachGraph.Cache/IReachGraphCache.cs | src/__Libraries/StellaOps.ReachGraph.Cache/StellaOps.ReachGraph.Cache.csproj | __Libraries | PASS | 60 | | |
| 509 | src/__Libraries/StellaOps.ReachGraph.Cache/ReachGraphCacheOptions.cs | src/__Libraries/StellaOps.ReachGraph.Cache/StellaOps.ReachGraph.Cache.csproj | __Libraries | PASS | 41 | | |
| 510 | src/__Libraries/StellaOps.ReachGraph.Cache/ReachGraphValkeyCache.cs | src/__Libraries/StellaOps.ReachGraph.Cache/StellaOps.ReachGraph.Cache.csproj | __Libraries | FAIL | 263 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 511 | src/__Libraries/StellaOps.ReachGraph.Persistence/IReachGraphRepository.cs | src/__Libraries/StellaOps.ReachGraph.Persistence/StellaOps.ReachGraph.Persistence.csproj | __Libraries | FAIL | 136 | FileLength>100 | Split file to stay <= 100 lines. |
| 512 | src/__Libraries/StellaOps.ReachGraph.Persistence/PostgresReachGraphRepository.cs | src/__Libraries/StellaOps.ReachGraph.Persistence/StellaOps.ReachGraph.Persistence.csproj | __Libraries | FAIL | 350 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 513 | src/__Libraries/StellaOps.ReachGraph/Deduplication/DeduplicatedEdge.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | FAIL | 140 | FileLength>100 | Split file to stay <= 100 lines. |
| 514 | src/__Libraries/StellaOps.ReachGraph/Deduplication/EdgeDeduplicator.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | FAIL | 139 | FileLength>100 | Split file to stay <= 100 lines. |
| 515 | src/__Libraries/StellaOps.ReachGraph/Deduplication/EdgeSemanticKey.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | FAIL | 135 | FileLength>100 | Split file to stay <= 100 lines. |
| 516 | src/__Libraries/StellaOps.ReachGraph/Hashing/ReachGraphDigestComputer.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | FAIL | 115 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 517 | src/__Libraries/StellaOps.ReachGraph/Schema/EdgeExplanation.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | PASS | 78 | | |
| 518 | src/__Libraries/StellaOps.ReachGraph/Schema/ReachGraphEdge.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | PASS | 25 | | |
| 519 | src/__Libraries/StellaOps.ReachGraph/Schema/ReachGraphMinimal.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | PASS | 77 | | |
| 520 | src/__Libraries/StellaOps.ReachGraph/Schema/ReachGraphNode.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | PASS | 82 | | |
| 521 | src/__Libraries/StellaOps.ReachGraph/Schema/ReachGraphProvenance.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | PASS | 72 | | |
| 522 | src/__Libraries/StellaOps.ReachGraph/Serialization/CanonicalReachGraphSerializer.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | FAIL | 464 | FileLength>100 | Split file to stay <= 100 lines. |
| 523 | src/__Libraries/StellaOps.ReachGraph/Signing/IReachGraphKeyStore.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | PASS | 46 | | |
| 524 | src/__Libraries/StellaOps.ReachGraph/Signing/IReachGraphSignerService.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | PASS | 100 | | |
| 525 | src/__Libraries/StellaOps.ReachGraph/Signing/ReachGraphSignerService.cs | src/__Libraries/StellaOps.ReachGraph/StellaOps.ReachGraph.csproj | __Libraries | FAIL | 225 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 526 | src/__Libraries/StellaOps.Replay.Core/CanonicalJson.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 91 | PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase. |
| 527 | src/__Libraries/StellaOps.Replay.Core/CasValidator.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 118 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 528 | src/__Libraries/StellaOps.Replay.Core/DeterministicHash.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 76 | AsyncNaming | Rename async methods to end with Async. |
| 529 | src/__Libraries/StellaOps.Replay.Core/DsseEnvelope.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | PASS | 32 | | |
| 530 | src/__Libraries/StellaOps.Replay.Core/PolicySimulationInputLock.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 114 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 531 | src/__Libraries/StellaOps.Replay.Core/ReachabilityReplayWriter.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 131 | FileLength>100 | Split file to stay <= 100 lines. |
| 532 | src/__Libraries/StellaOps.Replay.Core/ReplayBundleEntry.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | PASS | 7 | | |
| 533 | src/__Libraries/StellaOps.Replay.Core/ReplayBundleWriter.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 96 | AsyncNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async. |
| 534 | src/__Libraries/StellaOps.Replay.Core/ReplayManifest.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 214 | FileLength>100 | Split file to stay <= 100 lines. |
| 535 | src/__Libraries/StellaOps.Replay.Core/ReplayManifestExtensions.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | PASS | 44 | | |
| 536 | src/__Libraries/StellaOps.Replay.Core/ReplayManifestValidator.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 398 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 537 | src/__Libraries/StellaOps.Replay.Core/ReplayModels.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 95 | ConstNaming | Rename consts to PascalCase. |
| 538 | src/__Libraries/StellaOps.Replay.Core/SerializationCompat.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | PASS | 16 | | |
| 539 | src/__Libraries/StellaOps.Replay.Core/Bundle/StellaReplayBundleWriter.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 210 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 540 | src/__Libraries/StellaOps.Replay.Core/Export/IReplayManifestExporter.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 246 | FileLength>100 | Split file to stay <= 100 lines. |
| 541 | src/__Libraries/StellaOps.Replay.Core/Export/ReplayExportModels.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 399 | FileLength>100 | Split file to stay <= 100 lines. |
| 542 | src/__Libraries/StellaOps.Replay.Core/Export/ReplayManifestExporter.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 366 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 543 | src/__Libraries/StellaOps.Replay.Core/FeedSnapshot/FeedSnapshotCoordinatorService.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 686 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 544 | src/__Libraries/StellaOps.Replay.Core/FeedSnapshot/IFeedSnapshotCoordinator.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 432 | FileLength>100 | Split file to stay <= 100 lines. |
| 545 | src/__Libraries/StellaOps.Replay.Core/FeedSnapshot/IFeedSourceProvider.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 106 | FileLength>100 | Split file to stay <= 100 lines. |
| 546 | src/__Libraries/StellaOps.Replay.Core/Manifest/ReplayManifestWriter.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 110 | FileLength>100 | Split file to stay <= 100 lines. |
| 547 | src/__Libraries/StellaOps.Replay.Core/Models/KnowledgeSnapshot.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 153 | FileLength>100 | Split file to stay <= 100 lines. |
| 548 | src/__Libraries/StellaOps.Replay.Core/Models/ReplayProof.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 205 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 549 | src/__Libraries/StellaOps.Replay.Core/Validation/DeterminismManifestValidator.cs | src/__Libraries/StellaOps.Replay.Core/StellaOps.Replay.Core.csproj | __Libraries | FAIL | 431 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 550 | src/__Libraries/StellaOps.Replay/Engine/ReplayEngine.cs | src/__Libraries/StellaOps.Replay/StellaOps.Replay.csproj | __Libraries | FAIL | 190 | FileLength>100 | Split file to stay <= 100 lines. |
| 551 | src/__Libraries/StellaOps.Replay/Loaders/FeedSnapshotLoader.cs | src/__Libraries/StellaOps.Replay/StellaOps.Replay.csproj | __Libraries | FAIL | 84 | AsyncNaming | Rename async methods to end with Async. |
| 552 | src/__Libraries/StellaOps.Replay/Loaders/PolicySnapshotLoader.cs | src/__Libraries/StellaOps.Replay/StellaOps.Replay.csproj | __Libraries | FAIL | 79 | AsyncNaming | Rename async methods to end with Async. |
| 553 | src/__Libraries/StellaOps.Replay/Models/ReplayModels.cs | src/__Libraries/StellaOps.Replay/StellaOps.Replay.csproj | __Libraries | PASS | 60 | | |
| 554 | src/__Libraries/StellaOps.Replay/Models/ScanModels.cs | src/__Libraries/StellaOps.Replay/StellaOps.Replay.csproj | __Libraries | PASS | 20 | | |
| 555 | src/__Libraries/StellaOps.Resolver/CanonicalSerializerAdapter.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | PASS | 24 | | |
| 556 | src/__Libraries/StellaOps.Resolver/DefaultTrustLatticeEvaluator.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 129 | FileLength>100 | Split file to stay <= 100 lines. |
| 557 | src/__Libraries/StellaOps.Resolver/DeterministicResolver.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 154 | FileLength>100 | Split file to stay <= 100 lines. |
| 558 | src/__Libraries/StellaOps.Resolver/Edge.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | PASS | 86 | | |
| 559 | src/__Libraries/StellaOps.Resolver/EdgeDelta.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 112 | FileLength>100 | Split file to stay <= 100 lines. |
| 560 | src/__Libraries/StellaOps.Resolver/EdgeId.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | PASS | 93 | | |
| 561 | src/__Libraries/StellaOps.Resolver/EvidenceGraph.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 127 | FileLength>100 | Split file to stay <= 100 lines. |
| 562 | src/__Libraries/StellaOps.Resolver/GraphValidation.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 331 | FileLength>100 | Split file to stay <= 100 lines. |
| 563 | src/__Libraries/StellaOps.Resolver/IDeterministicResolver.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | PASS | 83 | | |
| 564 | src/__Libraries/StellaOps.Resolver/NfcStringNormalizer.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | PASS | 57 | | |
| 565 | src/__Libraries/StellaOps.Resolver/Node.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | PASS | 66 | | |
| 566 | src/__Libraries/StellaOps.Resolver/NodeId.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | PASS | 94 | | |
| 567 | src/__Libraries/StellaOps.Resolver/Policy.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | PASS | 55 | | |
| 568 | src/__Libraries/StellaOps.Resolver/ResolutionResult.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 149 | FileLength>100 | Split file to stay <= 100 lines. |
| 569 | src/__Libraries/StellaOps.Resolver/ResolutionVerifier.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 126 | FileLength>100 | Split file to stay <= 100 lines. |
| 570 | src/__Libraries/StellaOps.Resolver/ResolverServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 61 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 571 | src/__Libraries/StellaOps.Resolver/TopologicalGraphOrderer.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | PASS | 95 | | |
| 572 | src/__Libraries/StellaOps.Resolver/Verdict.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 116 | FileLength>100 | Split file to stay <= 100 lines. |
| 573 | src/__Libraries/StellaOps.Resolver/VerdictDelta.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 172 | FileLength>100 | Split file to stay <= 100 lines. |
| 574 | src/__Libraries/StellaOps.Resolver/Purity/RuntimePurity.cs | src/__Libraries/StellaOps.Resolver/StellaOps.Resolver.csproj | __Libraries | FAIL | 222 | FileLength>100 | Split file to stay <= 100 lines. |
| 575 | src/__Libraries/StellaOps.Signals.Contracts/Abstractions/ISignalConsumer.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 39 | | |
| 576 | src/__Libraries/StellaOps.Signals.Contracts/Abstractions/ISignalContext.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 59 | | |
| 577 | src/__Libraries/StellaOps.Signals.Contracts/Abstractions/ISignalEmitter.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 23 | | |
| 578 | src/__Libraries/StellaOps.Signals.Contracts/Extensions/ServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 64 | | |
| 579 | src/__Libraries/StellaOps.Signals.Contracts/Models/EntropySignal.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 65 | | |
| 580 | src/__Libraries/StellaOps.Signals.Contracts/Models/ExploitabilitySignal.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 65 | | |
| 581 | src/__Libraries/StellaOps.Signals.Contracts/Models/ReachabilitySignal.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 59 | | |
| 582 | src/__Libraries/StellaOps.Signals.Contracts/Models/SignalEnvelope.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 65 | | |
| 583 | src/__Libraries/StellaOps.Signals.Contracts/Models/SignalType.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 43 | | |
| 584 | src/__Libraries/StellaOps.Signals.Contracts/Models/TrustSignal.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 77 | | |
| 585 | src/__Libraries/StellaOps.Signals.Contracts/Models/UnknownSymbolSignal.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 59 | | |
| 586 | src/__Libraries/StellaOps.Signals.Contracts/Models/Evidence/CallPath.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | FAIL | 306 | FileLength>100 | Split file to stay <= 100 lines. |
| 587 | src/__Libraries/StellaOps.Signals.Contracts/Models/Evidence/CodeAnchor.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | FAIL | 168 | FileLength>100 | Split file to stay <= 100 lines. |
| 588 | src/__Libraries/StellaOps.Signals.Contracts/Models/Evidence/ReachabilityEvidenceChain.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | FAIL | 301 | FileLength>100 | Split file to stay <= 100 lines. |
| 589 | src/__Libraries/StellaOps.Signals.Contracts/Models/Evidence/ReachabilityExplainRequest.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | FAIL | 320 | FileLength>100 | Split file to stay <= 100 lines. |
| 590 | src/__Libraries/StellaOps.Signals.Contracts/Models/Evidence/ReachabilityState.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | PASS | 96 | | |
| 591 | src/__Libraries/StellaOps.Signals.Contracts/Models/Evidence/RuntimeHit.cs | src/__Libraries/StellaOps.Signals.Contracts/StellaOps.Signals.Contracts.csproj | __Libraries | FAIL | 166 | FileLength>100 | Split file to stay <= 100 lines. |
| 592 | src/__Libraries/StellaOps.Spdx3/ISpdx3Parser.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 143 | FileLength>100 | Split file to stay <= 100 lines. |
| 593 | src/__Libraries/StellaOps.Spdx3/Spdx3Parser.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 899 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 594 | src/__Libraries/StellaOps.Spdx3/Spdx3VersionDetector.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 205 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 595 | src/__Libraries/StellaOps.Spdx3/JsonLd/Spdx3ContextResolver.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 249 | FileLength>100 | Split file to stay <= 100 lines. |
| 596 | src/__Libraries/StellaOps.Spdx3/Model/Spdx3CreationInfo.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 140 | FileLength>100 | Split file to stay <= 100 lines. |
| 597 | src/__Libraries/StellaOps.Spdx3/Model/Spdx3Document.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 225 | FileLength>100 | Split file to stay <= 100 lines. |
| 598 | src/__Libraries/StellaOps.Spdx3/Model/Spdx3Element.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 114 | FileLength>100 | Split file to stay <= 100 lines. |
| 599 | src/__Libraries/StellaOps.Spdx3/Model/Spdx3ExternalIdentifier.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 149 | FileLength>100 | Split file to stay <= 100 lines. |
| 600 | src/__Libraries/StellaOps.Spdx3/Model/Spdx3ExternalRef.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 292 | FileLength>100 | Split file to stay <= 100 lines. |
| 601 | src/__Libraries/StellaOps.Spdx3/Model/Spdx3IntegrityMethod.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 226 | FileLength>100 | Split file to stay <= 100 lines. |
| 602 | src/__Libraries/StellaOps.Spdx3/Model/Spdx3ProfileIdentifier.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 180 | FileLength>100 | Split file to stay <= 100 lines. |
| 603 | src/__Libraries/StellaOps.Spdx3/Model/Spdx3Relationship.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 289 | FileLength>100 | Split file to stay <= 100 lines. |
| 604 | src/__Libraries/StellaOps.Spdx3/Model/Build/BuildProfileValidator.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 166 | FileLength>100 | Split file to stay <= 100 lines. |
| 605 | src/__Libraries/StellaOps.Spdx3/Model/Build/Spdx3Build.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 156 | FileLength>100 | Split file to stay <= 100 lines. |
| 606 | src/__Libraries/StellaOps.Spdx3/Model/Security/Spdx3CvssVulnAssessmentRelationship.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | PASS | 86 | | |
| 607 | src/__Libraries/StellaOps.Spdx3/Model/Security/Spdx3Vulnerability.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 240 | FileLength>100 | Split file to stay <= 100 lines. |
| 608 | src/__Libraries/StellaOps.Spdx3/Model/Software/Spdx3Package.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 320 | FileLength>100 | Split file to stay <= 100 lines. |
| 609 | src/__Libraries/StellaOps.Spdx3/Model/Software/Spdx3SpdxDocument.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | PASS | 82 | | |
| 610 | src/__Libraries/StellaOps.Spdx3/Validation/ISpdx3Validator.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 157 | FileLength>100 | Split file to stay <= 100 lines. |
| 611 | src/__Libraries/StellaOps.Spdx3/Validation/Spdx3Validator.cs | src/__Libraries/StellaOps.Spdx3/StellaOps.Spdx3.csproj | __Libraries | FAIL | 346 | FileLength>100 | Split file to stay <= 100 lines. |
| 612 | src/__Libraries/StellaOps.TestKit/TestCategories.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 283 | FileLength>100 | Split file to stay <= 100 lines. |
| 613 | src/__Libraries/StellaOps.TestKit/Analysis/IntentCoverageReport.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 398 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 614 | src/__Libraries/StellaOps.TestKit/Assertions/CanonicalJsonAssert.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 150 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 615 | src/__Libraries/StellaOps.TestKit/Assertions/SnapshotAssert.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 115 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 616 | src/__Libraries/StellaOps.TestKit/BlastRadius/BlastRadiusTestRunner.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 280 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 617 | src/__Libraries/StellaOps.TestKit/BlastRadius/BlastRadiusValidator.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 242 | FileLength>100 | Split file to stay <= 100 lines. |
| 618 | src/__Libraries/StellaOps.TestKit/Connectors/ConnectorHttpFixture.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 219 | FileLength>100; ServiceLocator; UsingInsideNamespace | Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 619 | src/__Libraries/StellaOps.TestKit/Connectors/ConnectorLiveSchemaTestBase.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 210 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; ServiceLocator | Add ConfigureAwait(false) to awaited calls in library-like code.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 620 | src/__Libraries/StellaOps.TestKit/Connectors/ConnectorResilienceTestBase.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 163 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 621 | src/__Libraries/StellaOps.TestKit/Connectors/ConnectorSecurityTestBase.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 288 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 622 | src/__Libraries/StellaOps.TestKit/Connectors/ConnectorTestBase.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 206 | FileLength>100 | Split file to stay <= 100 lines. |
| 623 | src/__Libraries/StellaOps.TestKit/Connectors/FixtureUpdater.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 194 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 624 | src/__Libraries/StellaOps.TestKit/Deterministic/DeterministicRandom.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 127 | FileLength>100 | Split file to stay <= 100 lines. |
| 625 | src/__Libraries/StellaOps.TestKit/Deterministic/DeterministicTime.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 109 | FileLength>100 | Split file to stay <= 100 lines. |
| 626 | src/__Libraries/StellaOps.TestKit/Environment/EnvironmentProfile.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 271 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 627 | src/__Libraries/StellaOps.TestKit/Environment/SkewTestRunner.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 399 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 628 | src/__Libraries/StellaOps.TestKit/Evidence/EvidenceChainAssert.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 229 | FileLength>100 | Split file to stay <= 100 lines. |
| 629 | src/__Libraries/StellaOps.TestKit/Evidence/EvidenceChainReporter.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 340 | FileLength>100 | Split file to stay <= 100 lines. |
| 630 | src/__Libraries/StellaOps.TestKit/Evidence/RequirementAttribute.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 103 | FileLength>100 | Split file to stay <= 100 lines. |
| 631 | src/__Libraries/StellaOps.TestKit/Extensions/HttpClientTestExtensions.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 112 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 632 | src/__Libraries/StellaOps.TestKit/Fixtures/ContractTestHelper.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 244 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 633 | src/__Libraries/StellaOps.TestKit/Fixtures/HttpFixtureServer.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 158 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; ServiceLocator | Add ConfigureAwait(false) to awaited calls in library-like code.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 634 | src/__Libraries/StellaOps.TestKit/Fixtures/PostgresFixture.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 342 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 635 | src/__Libraries/StellaOps.TestKit/Fixtures/ValkeyFixture.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 254 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 636 | src/__Libraries/StellaOps.TestKit/Fixtures/WebServiceFixture.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 193 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 637 | src/__Libraries/StellaOps.TestKit/Incident/IncidentMetadata.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 125 | FileLength>100 | Split file to stay <= 100 lines. |
| 638 | src/__Libraries/StellaOps.TestKit/Incident/IncidentTestGenerator.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 360 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 639 | src/__Libraries/StellaOps.TestKit/Incident/TestScaffold.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 233 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 640 | src/__Libraries/StellaOps.TestKit/Interop/SchemaVersionMatrix.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 353 | FileLength>100 | Split file to stay <= 100 lines. |
| 641 | src/__Libraries/StellaOps.TestKit/Interop/VersionCompatibilityFixture.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 410 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 642 | src/__Libraries/StellaOps.TestKit/Longevity/StabilityMetrics.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 384 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 643 | src/__Libraries/StellaOps.TestKit/Longevity/StabilityTestRunner.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 232 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 644 | src/__Libraries/StellaOps.TestKit/Observability/ContractViolationException.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | PASS | 30 | | |
| 645 | src/__Libraries/StellaOps.TestKit/Observability/LogContractAssert.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 244 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 646 | src/__Libraries/StellaOps.TestKit/Observability/MetricsContractAssert.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 361 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 647 | src/__Libraries/StellaOps.TestKit/Observability/OtelCapture.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 164 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 648 | src/__Libraries/StellaOps.TestKit/Observability/OTelContractAssert.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 224 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 649 | src/__Libraries/StellaOps.TestKit/Templates/CacheIdempotencyTests.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 219 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 650 | src/__Libraries/StellaOps.TestKit/Templates/FlakyToDeterministicPattern.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 288 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 651 | src/__Libraries/StellaOps.TestKit/Templates/QueryDeterminismTests.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 260 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 652 | src/__Libraries/StellaOps.TestKit/Templates/StorageConcurrencyTests.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 231 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 653 | src/__Libraries/StellaOps.TestKit/Templates/StorageIdempotencyTests.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 149 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 654 | src/__Libraries/StellaOps.TestKit/Templates/WebServiceTestBase.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | FAIL | 327 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 655 | src/__Libraries/StellaOps.TestKit/Traits/IntentAttribute.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | PASS | 78 | | |
| 656 | src/__Libraries/StellaOps.TestKit/Traits/TestIntents.cs | src/__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj | __Libraries | PASS | 95 | | |
| 657 | src/__Libraries/StellaOps.Verdict/IPolicyLockGenerator.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | PASS | 57 | | |
| 658 | src/__Libraries/StellaOps.Verdict/IVerdictBuilder.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 247 | FileLength>100 | Split file to stay <= 100 lines. |
| 659 | src/__Libraries/StellaOps.Verdict/PolicyLockGenerator.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 214 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 660 | src/__Libraries/StellaOps.Verdict/VerdictBuilderOptions.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 103 | FileLength>100 | Split file to stay <= 100 lines. |
| 661 | src/__Libraries/StellaOps.Verdict/VerdictBuilderService.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 455 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 662 | src/__Libraries/StellaOps.Verdict/VerdictServiceCollectionExtensions.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 176 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 663 | src/__Libraries/StellaOps.Verdict/Api/VerdictContracts.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 188 | FileLength>100; NamespaceNotFileScoped | Convert to file-scoped namespace.; Split file to stay <= 100 lines. |
| 664 | src/__Libraries/StellaOps.Verdict/Api/VerdictEndpoints.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 469 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 665 | src/__Libraries/StellaOps.Verdict/Export/VerdictBundleExporter.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 448 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 666 | src/__Libraries/StellaOps.Verdict/Oci/OciAttestationPublisher.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 828 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 667 | src/__Libraries/StellaOps.Verdict/Persistence/IVerdictStore.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 149 | FileLength>100 | Split file to stay <= 100 lines. |
| 668 | src/__Libraries/StellaOps.Verdict/Persistence/PostgresVerdictStore.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 306 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 669 | src/__Libraries/StellaOps.Verdict/Persistence/VerdictRow.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | PASS | 85 | | |
| 670 | src/__Libraries/StellaOps.Verdict/Schema/StellaVerdict.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 636 | FileLength>100 | Split file to stay <= 100 lines. |
| 671 | src/__Libraries/StellaOps.Verdict/Services/VerdictAssemblyService.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 407 | FileLength>100 | Split file to stay <= 100 lines. |
| 672 | src/__Libraries/StellaOps.Verdict/Services/VerdictSigningService.cs | src/__Libraries/StellaOps.Verdict/StellaOps.Verdict.csproj | __Libraries | FAIL | 306 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 673 | src/__Libraries/StellaOps.VersionComparison/IVersionComparator.cs | src/__Libraries/StellaOps.VersionComparison/StellaOps.VersionComparison.csproj | __Libraries | PASS | 82 | | |
| 674 | src/__Libraries/StellaOps.VersionComparison/Comparers/DebianVersionComparer.cs | src/__Libraries/StellaOps.VersionComparison/StellaOps.VersionComparison.csproj | __Libraries | FAIL | 263 | FileLength>100 | Split file to stay <= 100 lines. |
| 675 | src/__Libraries/StellaOps.VersionComparison/Comparers/RpmVersionComparer.cs | src/__Libraries/StellaOps.VersionComparison/StellaOps.VersionComparison.csproj | __Libraries | FAIL | 261 | FileLength>100 | Split file to stay <= 100 lines. |
| 676 | src/__Libraries/StellaOps.VersionComparison/Comparers/StringVersionComparer.cs | src/__Libraries/StellaOps.VersionComparison/StellaOps.VersionComparison.csproj | __Libraries | PASS | 69 | | |
| 677 | src/__Libraries/StellaOps.VersionComparison/Models/ApkVersion.cs | src/__Libraries/StellaOps.VersionComparison/StellaOps.VersionComparison.csproj | __Libraries | FAIL | 159 | FileLength>100 | Split file to stay <= 100 lines. |
| 678 | src/__Libraries/StellaOps.VersionComparison/Models/DebianVersion.cs | src/__Libraries/StellaOps.VersionComparison/StellaOps.VersionComparison.csproj | __Libraries | FAIL | 127 | FileLength>100 | Split file to stay <= 100 lines. |
| 679 | src/__Libraries/StellaOps.VersionComparison/Models/RpmVersion.cs | src/__Libraries/StellaOps.VersionComparison/StellaOps.VersionComparison.csproj | __Libraries | FAIL | 131 | FileLength>100 | Split file to stay <= 100 lines. |
| 680 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/AdvisoryAiGuardrailOptions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | PASS | 26 | | |
| 681 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/AdvisoryAiMetrics.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | FAIL | 29 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 682 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/AdvisoryAiServiceOptions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | PASS | 84 | | |
| 683 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/AdvisoryAiServiceOptionsValidator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | FAIL | 101 | FileLength>100 | Split file to stay <= 100 lines. |
| 684 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/FileSystemAdvisoryOutputStore.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | FAIL | 182 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 685 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/FileSystemAdvisoryPlanCache.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | FAIL | 470 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 686 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/FileSystemAdvisoryTaskQueue.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | FAIL | 192 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 687 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/GuardrailAllowlistLoader.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | FAIL | 99 | UsingInsideNamespace | Move using directives outside namespace. |
| 688 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/GuardrailPhraseLoader.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | FAIL | 46 | UsingInsideNamespace | Move using directives outside namespace. |
| 689 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/IGuidProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | PASS | 27 | | |
| 690 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/ServiceCollectionExtensions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | FAIL | 282 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 691 | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/Properties/AssemblyInfo.cs | src/AdvisoryAI/StellaOps.AdvisoryAI.Hosting/StellaOps.AdvisoryAI.Hosting.csproj | AdvisoryAI | PASS | 2 | | |
| 692 | src/AdvisoryAI/StellaOps.AdvisoryAI/Abstractions/AdvisoryRetrievalRequest.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 14 | | |
| 693 | src/AdvisoryAI/StellaOps.AdvisoryAI/Abstractions/AdvisoryRetrievalResult.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 40 | | |
| 694 | src/AdvisoryAI/StellaOps.AdvisoryAI/Abstractions/IAdvisoryDocumentProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 9 | | |
| 695 | src/AdvisoryAI/StellaOps.AdvisoryAI/Abstractions/IAdvisoryStructuredRetriever.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 7 | | |
| 696 | src/AdvisoryAI/StellaOps.AdvisoryAI/Abstractions/IAdvisoryVectorRetriever.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 26 | | |
| 697 | src/AdvisoryAI/StellaOps.AdvisoryAI/Abstractions/ISbomContextRetriever.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 12 | | |
| 698 | src/AdvisoryAI/StellaOps.AdvisoryAI/Abstractions/SbomContextRequest.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 83 | | |
| 699 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/ActionAuditLedger.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 153 | FileLength>100 | Split file to stay <= 100 lines. |
| 700 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/ActionDefinition.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 136 | FileLength>100 | Split file to stay <= 100 lines. |
| 701 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/ActionExecutor.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 458 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 702 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/ActionPolicyGate.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 361 | FileLength>100 | Split file to stay <= 100 lines. |
| 703 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/ActionRegistry.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 434 | FileLength>100 | Split file to stay <= 100 lines. |
| 704 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/ApprovalWorkflowAdapter.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 277 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 705 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/IActionAuditLedger.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 277 | FileLength>100 | Split file to stay <= 100 lines. |
| 706 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/IActionExecutor.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 350 | FileLength>100 | Split file to stay <= 100 lines. |
| 707 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/IActionPolicyGate.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 359 | FileLength>100 | Split file to stay <= 100 lines. |
| 708 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/IActionRegistry.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 79 | | |
| 709 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/IApprovalWorkflowAdapter.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 284 | FileLength>100 | Split file to stay <= 100 lines. |
| 710 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/IdempotencyHandler.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 215 | BlockingAsync; FileLength>100 | Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 711 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/IGuidGenerator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 32 | | |
| 712 | src/AdvisoryAI/StellaOps.AdvisoryAI/Actions/IIdempotencyHandler.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 84 | | |
| 713 | src/AdvisoryAI/StellaOps.AdvisoryAI/Caching/IAdvisoryPlanCache.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 174 | FileLength>100 | Split file to stay <= 100 lines. |
| 714 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/ActionProposalParser.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 290 | FileLength>100 | Split file to stay <= 100 lines. |
| 715 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/AttestationIntegration.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 350 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 716 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/ChatPromptAssembler.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 272 | FileLength>100 | Split file to stay <= 100 lines. |
| 717 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/ChatResponseStreamer.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 490 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 718 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/ConversationContextBuilder.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 378 | FileLength>100 | Split file to stay <= 100 lines. |
| 719 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/ConversationService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 734 | FileLength>100 | Split file to stay <= 100 lines. |
| 720 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/EvidencePackChatIntegration.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 348 | FileLength>100 | Split file to stay <= 100 lines. |
| 721 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/GroundingValidator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 603 | FileLength>100 | Split file to stay <= 100 lines. |
| 722 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/OpsMemoryIntegration.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 296 | FileLength>100 | Split file to stay <= 100 lines. |
| 723 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/OpsMemoryLinkResolver.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 149 | FileLength>100 | Split file to stay <= 100 lines. |
| 724 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/DataProviders.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 363 | FileLength>100 | Split file to stay <= 100 lines. |
| 725 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/EvidenceBundleAssembler.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 687 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 726 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/IEvidenceBundleAssembler.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 152 | FileLength>100 | Split file to stay <= 100 lines. |
| 727 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/Providers/BinaryPatchDataProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 123 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 728 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/Providers/ContextDataProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 111 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 729 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/Providers/FixDataProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 193 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 730 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/Providers/OpsMemoryDataProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 208 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 731 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/Providers/PolicyDataProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 125 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 732 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/Providers/ProvenanceDataProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 211 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 733 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/Providers/ReachabilityDataProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 170 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 734 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/Providers/SbomDataProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 211 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 735 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Assembly/Providers/VexDataProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 155 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 736 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Audit/AdvisoryChatAuditEnvelopeBuilder.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 710 | FileLength>100 | Split file to stay <= 100 lines. |
| 737 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Audit/ChatAuditRecords.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 90 | | |
| 738 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/DependencyInjection/AdvisoryChatServiceCollectionExtensions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 203 | FileLength>100; NamespaceNotStellaOps; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines.; Update namespace to StellaOps.<Area>. |
| 739 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Inference/ClaudeInferenceClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 344 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 740 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Inference/IAdvisoryChatInferenceClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 89 | | |
| 741 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Inference/LocalInferenceClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 320 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 742 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Inference/OllamaInferenceClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 297 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 743 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Inference/OpenAIInferenceClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 330 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 744 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Inference/SystemPromptLoader.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 106 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 745 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Models/AdvisoryChatModels.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 407 | FileLength>100 | Split file to stay <= 100 lines. |
| 746 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Models/AdvisoryChatResponseModels.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 331 | FileLength>100 | Split file to stay <= 100 lines. |
| 747 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Options/AdvisoryChatOptions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 330 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 748 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Routing/AdvisoryChatIntentRouter.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 464 | FileLength>100 | Split file to stay <= 100 lines. |
| 749 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Services/AdvisoryChatQuotaService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 308 | FileLength>100 | Split file to stay <= 100 lines. |
| 750 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Services/AdvisoryChatService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 897 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 751 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Services/LocalChatInferenceClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 32 | | |
| 752 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Services/NullAdvisoryChatAuditLogger.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 58 | | |
| 753 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Services/PostgresAdvisoryChatAuditLogger.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 531 | FileLength>100 | Split file to stay <= 100 lines. |
| 754 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Settings/AdvisoryChatSettingsModels.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 65 | | |
| 755 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Settings/AdvisoryChatSettingsService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 205 | FileLength>100 | Split file to stay <= 100 lines. |
| 756 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Settings/AdvisoryChatSettingsStore.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 141 | FileLength>100 | Split file to stay <= 100 lines. |
| 757 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chat/Settings/AdvisoryChatToolPolicy.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 236 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 758 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chunking/CsafDocumentChunker.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 280 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 759 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chunking/DocumentChunkerFactory.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 27 | | |
| 760 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chunking/IDocumentChunker.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 11 | | |
| 761 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chunking/JsonElementExtensions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 42 | | |
| 762 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chunking/MarkdownDocumentChunker.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 88 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 763 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chunking/OpenVexDocumentChunker.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 201 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 764 | src/AdvisoryAI/StellaOps.AdvisoryAI/Chunking/OsvDocumentChunker.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 140 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 765 | src/AdvisoryAI/StellaOps.AdvisoryAI/Context/SbomContextResult.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 190 | FileLength>100 | Split file to stay <= 100 lines. |
| 766 | src/AdvisoryAI/StellaOps.AdvisoryAI/DependencyInjection/ActionsServiceCollectionExtensions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 87 | | |
| 767 | src/AdvisoryAI/StellaOps.AdvisoryAI/DependencyInjection/SbomContextServiceCollectionExtensions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 43 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 768 | src/AdvisoryAI/StellaOps.AdvisoryAI/DependencyInjection/ToolsetServiceCollectionExtensions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 107 | FileLength>100 | Split file to stay <= 100 lines. |
| 769 | src/AdvisoryAI/StellaOps.AdvisoryAI/Diagnostics/AdvisoryAiActivitySource.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 9 | | |
| 770 | src/AdvisoryAI/StellaOps.AdvisoryAI/Documents/AdvisoryChunk.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 65 | | |
| 771 | src/AdvisoryAI/StellaOps.AdvisoryAI/Documents/AdvisoryDocument.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 47 | | |
| 772 | src/AdvisoryAI/StellaOps.AdvisoryAI/Documents/DocumentFormat.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 11 | | |
| 773 | src/AdvisoryAI/StellaOps.AdvisoryAI/Documents/DocumentFormatMapper.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 25 | | |
| 774 | src/AdvisoryAI/StellaOps.AdvisoryAI/Evidence/NullEvidencePackSigner.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 53 | | |
| 775 | src/AdvisoryAI/StellaOps.AdvisoryAI/Execution/AdvisoryPipelineExecutor.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 134 | FileLength>100 | Split file to stay <= 100 lines. |
| 776 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/DefaultExplanationPromptService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 158 | FileLength>100 | Split file to stay <= 100 lines. |
| 777 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/EvidenceAnchoredExplanationGenerator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 218 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 778 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/ExplanationPromptTemplates.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 283 | FileLength>100 | Split file to stay <= 100 lines. |
| 779 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/ExplanationRequest.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 91 | | |
| 780 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/ExplanationResult.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 143 | FileLength>100 | Split file to stay <= 100 lines. |
| 781 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/IEvidenceRetrievalService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 123 | FileLength>100 | Split file to stay <= 100 lines. |
| 782 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/IExplanationGenerator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 34 | | |
| 783 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/IExplanationRequestStore.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 16 | | |
| 784 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/InMemoryExplanationStore.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 45 | | |
| 785 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/NullCitationExtractor.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 14 | | |
| 786 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/NullEvidenceRetrievalService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 44 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 787 | src/AdvisoryAI/StellaOps.AdvisoryAI/Explanation/NullExplanationInferenceClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 34 | | |
| 788 | src/AdvisoryAI/StellaOps.AdvisoryAI/Guardrails/AdvisoryGuardrailPipeline.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 383 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 789 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/AdvisoryInferenceClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 217 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 790 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/ILocalLlmRuntime.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 137 | FileLength>100 | Split file to stay <= 100 lines. |
| 791 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlamaCppRuntime.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 184 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 792 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmBenchmark.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 310 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 793 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LocalInferenceOptions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 130 | FileLength>100 | Split file to stay <= 100 lines. |
| 794 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LocalLlmConfig.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 162 | FileLength>100 | Split file to stay <= 100 lines. |
| 795 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/ModelBundle.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 282 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 796 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/OnnxRuntime.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 140 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 797 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/ProviderBasedAdvisoryInferenceClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 237 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 798 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/SignedModelBundleManager.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 398 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 799 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/ClaudeLlmProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 569 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; ServiceLocator; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 800 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/GeminiLlmProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 577 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; ServiceLocator; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 801 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/ILlmProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 179 | FileLength>100 | Split file to stay <= 100 lines. |
| 802 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/ILlmProviderPlugin.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 250 | FileLength>100 | Split file to stay <= 100 lines. |
| 803 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/LlamaServerLlmProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 594 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; ServiceLocator; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 804 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/LlmInferenceCache.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 572 | BlockingAsync; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 805 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/LlmProviderFactory.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 362 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 806 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/LlmProviderOptions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 169 | FileLength>100 | Split file to stay <= 100 lines. |
| 807 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/OllamaLlmProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 538 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; ServiceLocator; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 808 | src/AdvisoryAI/StellaOps.AdvisoryAI/Inference/LlmProviders/OpenAiLlmProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 592 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; ServiceLocator; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 809 | src/AdvisoryAI/StellaOps.AdvisoryAI/Metrics/AdvisoryPipelineMetrics.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 112 | FileLength>100 | Split file to stay <= 100 lines. |
| 810 | src/AdvisoryAI/StellaOps.AdvisoryAI/Orchestration/AdvisoryPipelineOptions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 160 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 811 | src/AdvisoryAI/StellaOps.AdvisoryAI/Orchestration/AdvisoryPipelineOrchestrator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 427 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 812 | src/AdvisoryAI/StellaOps.AdvisoryAI/Orchestration/AdvisoryPipelinePlanResponse.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 112 | FileLength>100 | Split file to stay <= 100 lines. |
| 813 | src/AdvisoryAI/StellaOps.AdvisoryAI/Orchestration/AdvisoryTaskPlan.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 72 | | |
| 814 | src/AdvisoryAI/StellaOps.AdvisoryAI/Orchestration/AdvisoryTaskRequest.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 50 | | |
| 815 | src/AdvisoryAI/StellaOps.AdvisoryAI/Orchestration/AdvisoryTaskType.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 9 | | |
| 816 | src/AdvisoryAI/StellaOps.AdvisoryAI/Orchestration/IAdvisoryPipelineOrchestrator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 10 | | |
| 817 | src/AdvisoryAI/StellaOps.AdvisoryAI/Outputs/AdvisoryOutputStore.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 180 | FileLength>100 | Split file to stay <= 100 lines. |
| 818 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/AiPolicyIntentParser.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 278 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 819 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/InMemoryPolicyIntentStore.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 26 | | |
| 820 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/IPolicyIntentParser.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 60 | | |
| 821 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/IPolicyRuleGenerator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 181 | FileLength>100 | Split file to stay <= 100 lines. |
| 822 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/ITestCaseSynthesizer.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 171 | FileLength>100 | Split file to stay <= 100 lines. |
| 823 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/LatticeRuleGenerator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 269 | FileLength>100 | Split file to stay <= 100 lines. |
| 824 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/NullPolicyIntentParser.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 115 | FileLength>100 | Split file to stay <= 100 lines. |
| 825 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/PolicyBundleCompiler.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 775 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 826 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/PolicyIntent.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 197 | FileLength>100 | Split file to stay <= 100 lines. |
| 827 | src/AdvisoryAI/StellaOps.AdvisoryAI/PolicyStudio/PropertyBasedTestSynthesizer.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 327 | FileLength>100 | Split file to stay <= 100 lines. |
| 828 | src/AdvisoryAI/StellaOps.AdvisoryAI/Prompting/AdvisoryPromptAssembler.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 392 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 829 | src/AdvisoryAI/StellaOps.AdvisoryAI/Properties/AssemblyInfo.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 4 | | |
| 830 | src/AdvisoryAI/StellaOps.AdvisoryAI/Providers/ConcelierAdvisoryDocumentProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 127 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 831 | src/AdvisoryAI/StellaOps.AdvisoryAI/Providers/ExcititorVexDocumentProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 204 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 832 | src/AdvisoryAI/StellaOps.AdvisoryAI/Providers/ISbomContextClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 197 | FileLength>100 | Split file to stay <= 100 lines. |
| 833 | src/AdvisoryAI/StellaOps.AdvisoryAI/Providers/NullAdvisoryDocumentProvider.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 19 | | |
| 834 | src/AdvisoryAI/StellaOps.AdvisoryAI/Providers/NullSbomContextClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 18 | | |
| 835 | src/AdvisoryAI/StellaOps.AdvisoryAI/Providers/SbomContextClientOptions.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 31 | | |
| 836 | src/AdvisoryAI/StellaOps.AdvisoryAI/Providers/SbomContextHttpClient.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 236 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 837 | src/AdvisoryAI/StellaOps.AdvisoryAI/Queue/IAdvisoryTaskQueue.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 100 | AsyncNaming; BlockingAsync | Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await. |
| 838 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/AiRemediationPlanner.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 365 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 839 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/AzureDevOpsPullRequestGenerator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 143 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 840 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/GitHubPullRequestGenerator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 312 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 841 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/GitLabMergeRequestGenerator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 122 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 842 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/IPackageVersionResolver.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 89 | | |
| 843 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/IPullRequestGenerator.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 225 | FileLength>100 | Split file to stay <= 100 lines. |
| 844 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/IRemediationPlanner.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 34 | | |
| 845 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/NullRemediationPlanner.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 101 | FileLength>100 | Split file to stay <= 100 lines. |
| 846 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/PrTemplateBuilder.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 326 | FileLength>100 | Split file to stay <= 100 lines. |
| 847 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/RemediationDeltaService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 325 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 848 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/RemediationPlan.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 225 | FileLength>100 | Split file to stay <= 100 lines. |
| 849 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/RemediationPlanRequest.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 86 | | |
| 850 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/ScmConnector/AzureDevOpsScmConnector.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 387 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 851 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/ScmConnector/GiteaScmConnector.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 328 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 852 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/ScmConnector/GitHubScmConnector.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 324 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 853 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/ScmConnector/GitLabScmConnector.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 336 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 854 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/ScmConnector/IScmConnector.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 273 | FileLength>100 | Split file to stay <= 100 lines. |
| 855 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/ScmConnector/ScmConnectorBase.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 160 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 856 | src/AdvisoryAI/StellaOps.AdvisoryAI/Remediation/ScmConnector/ScmConnectorCatalog.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 190 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 857 | src/AdvisoryAI/StellaOps.AdvisoryAI/Replay/AIArtifactReplayer.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 463 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 858 | src/AdvisoryAI/StellaOps.AdvisoryAI/Retrievers/AdvisoryStructuredRetriever.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 73 | AsyncNaming | Rename async methods to end with Async. |
| 859 | src/AdvisoryAI/StellaOps.AdvisoryAI/Retrievers/AdvisoryVectorRetriever.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 74 | AsyncNaming | Rename async methods to end with Async. |
| 860 | src/AdvisoryAI/StellaOps.AdvisoryAI/Retrievers/SbomContextRetriever.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 211 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 861 | src/AdvisoryAI/StellaOps.AdvisoryAI/Runs/InMemoryRunStore.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 162 | FileLength>100 | Split file to stay <= 100 lines. |
| 862 | src/AdvisoryAI/StellaOps.AdvisoryAI/Runs/IRunService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 430 | FileLength>100 | Split file to stay <= 100 lines. |
| 863 | src/AdvisoryAI/StellaOps.AdvisoryAI/Runs/IRunStore.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 105 | FileLength>100 | Split file to stay <= 100 lines. |
| 864 | src/AdvisoryAI/StellaOps.AdvisoryAI/Runs/RunService.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 725 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 865 | src/AdvisoryAI/StellaOps.AdvisoryAI/Runs/Models/Run.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 279 | FileLength>100 | Split file to stay <= 100 lines. |
| 866 | src/AdvisoryAI/StellaOps.AdvisoryAI/Runs/Models/RunArtifact.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 183 | FileLength>100 | Split file to stay <= 100 lines. |
| 867 | src/AdvisoryAI/StellaOps.AdvisoryAI/Runs/Models/RunEvent.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 429 | FileLength>100 | Split file to stay <= 100 lines. |
| 868 | src/AdvisoryAI/StellaOps.AdvisoryAI/Storage/ConversationStore.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 378 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 869 | src/AdvisoryAI/StellaOps.AdvisoryAI/Tools/DependencyAnalysisResult.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 86 | | |
| 870 | src/AdvisoryAI/StellaOps.AdvisoryAI/Tools/DeterministicToolset.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 384 | FileLength>100 | Split file to stay <= 100 lines. |
| 871 | src/AdvisoryAI/StellaOps.AdvisoryAI/Tools/IDeterministicToolset.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | PASS | 25 | | |
| 872 | src/AdvisoryAI/StellaOps.AdvisoryAI/Tools/SemanticVersion.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 257 | FileLength>100 | Split file to stay <= 100 lines. |
| 873 | src/AdvisoryAI/StellaOps.AdvisoryAI/Tools/SemanticVersionRange.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 122 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 874 | src/AdvisoryAI/StellaOps.AdvisoryAI/Vectorization/DeterministicHashVectorEncoder.cs | src/AdvisoryAI/StellaOps.AdvisoryAI/StellaOps.AdvisoryAI.csproj | AdvisoryAI | FAIL | 73 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 875 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Extractors/AdvisorySnapshotExtractor.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 271 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 876 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Extractors/PolicySnapshotExtractor.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 376 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 877 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Extractors/VexSnapshotExtractor.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 297 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 878 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/FunctionMap/FunctionMapBundleIntegration.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 240 | FileLength>100 | Split file to stay <= 100 lines. |
| 879 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Models/BundleExportMode.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | PASS | 42 | | |
| 880 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Models/BundleFormatV2.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 267 | FileLength>100 | Split file to stay <= 100 lines. |
| 881 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Models/BundleManifest.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 271 | FileLength>100 | Split file to stay <= 100 lines. |
| 882 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Models/BundleSubject.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | PASS | 18 | | |
| 883 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Models/KnowledgeSnapshotManifest.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 167 | FileLength>100 | Split file to stay <= 100 lines. |
| 884 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Models/RekorProofEntry.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | PASS | 22 | | |
| 885 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Models/TimestampEntry.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | PASS | 37 | | |
| 886 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Models/TrustProfile.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | PASS | 56 | | |
| 887 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Serialization/BundleManifestSerializer.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 64 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 888 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Serialization/TimestampEntryJsonConverter.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 67 | UsingInsideNamespace | Move using directives outside namespace. |
| 889 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/Abstractions.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 163 | FileLength>100 | Split file to stay <= 100 lines. |
| 890 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/BundleBuilder.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 641 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 891 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/BundleLoader.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 80 | AsyncNaming | Rename async methods to end with Async. |
| 892 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/ConcelierAdvisoryImportTarget.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 271 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 893 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/CrlFetcher.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 162 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 894 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/ExcititorVexImportTarget.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 267 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 895 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/KnowledgeSnapshotImporter.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 569 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 896 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/LocalRbacBundleExtensions.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 181 | FileLength>100 | Split file to stay <= 100 lines. |
| 897 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/OcspResponseFetcher.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 140 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 898 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/PolicyRegistryImportTarget.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 253 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 899 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/SnapshotBundleReader.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 622 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 900 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/SnapshotBundleWriter.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 603 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 901 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/SnapshotManifestSigner.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 490 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 902 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/TimeAnchorService.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 320 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 903 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/TrustProfileLoader.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 113 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 904 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/TsaChainBundler.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 272 | FileLength>100 | Split file to stay <= 100 lines. |
| 905 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Services/TsaRevocationBlob.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | PASS | 4 | | |
| 906 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/TrustSnapshot/IGuidProvider.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | PASS | 36 | | |
| 907 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/TrustSnapshot/TrustSnapshotBuilder.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 596 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 908 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/TrustSnapshot/TrustSnapshotImporter.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 687 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 909 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/TrustSnapshot/TrustSnapshotManifest.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 360 | FileLength>100 | Split file to stay <= 100 lines. |
| 910 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Validation/BundleSizeValidator.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | PASS | 20 | | |
| 911 | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/Validation/BundleValidator.cs | src/AirGap/__Libraries/StellaOps.AirGap.Bundle/StellaOps.AirGap.Bundle.csproj | AirGap | FAIL | 226 | FileLength>100 | Split file to stay <= 100 lines. |
| 912 | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/EfCore/Context/AirGapDbContext.cs | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/StellaOps.AirGap.Persistence.csproj | AirGap | PASS | 36 | | |
| 913 | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/Extensions/AirGapPersistenceExtensions.cs | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/StellaOps.AirGap.Persistence.csproj | AirGap | FAIL | 89 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 914 | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/Postgres/AirGapDataSource.cs | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/StellaOps.AirGap.Persistence.csproj | AirGap | PASS | 45 | | |
| 915 | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/Postgres/AirGapStartupMigrationHost.cs | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/StellaOps.AirGap.Persistence.csproj | AirGap | PASS | 23 | | |
| 916 | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/Postgres/Repositories/PostgresAirGapStateStore.cs | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/StellaOps.AirGap.Persistence.csproj | AirGap | FAIL | 343 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 917 | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/Postgres/Repositories/PostgresBundleVersionStore.cs | src/AirGap/__Libraries/StellaOps.AirGap.Persistence/StellaOps.AirGap.Persistence.csproj | AirGap | FAIL | 362 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 918 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/AirGapSyncServiceCollectionExtensions.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 154 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 919 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Models/AirGapBundle.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | PASS | 52 | | |
| 920 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Models/ConflictResolution.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | PASS | 69 | | |
| 921 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Models/MergeResult.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | PASS | 88 | | |
| 922 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Models/NodeJobLog.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | PASS | 34 | | |
| 923 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Models/OfflineJobLogEntry.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | PASS | 59 | | |
| 924 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Models/SyncResult.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | PASS | 73 | | |
| 925 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Services/AirGapBundleDsseSigner.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 277 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 926 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Services/AirGapBundleExporter.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 272 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 927 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Services/AirGapBundleImporter.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 318 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 928 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Services/AirGapSyncService.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 199 | FileLength>100 | Split file to stay <= 100 lines. |
| 929 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Services/ConflictResolver.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 115 | FileLength>100 | Split file to stay <= 100 lines. |
| 930 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Services/HlcMergeService.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 170 | FileLength>100 | Split file to stay <= 100 lines. |
| 931 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Services/OfflineHlcManager.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 174 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 932 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Stores/FileBasedOfflineJobLogStore.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 248 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 933 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Stores/IOfflineJobLogStore.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | PASS | 59 | | |
| 934 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Telemetry/AirGapSyncMetrics.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 163 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 935 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Transport/FileBasedJobSyncTransport.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 224 | FileLength>100 | Split file to stay <= 100 lines. |
| 936 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Transport/IJobSyncTransport.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 124 | FileLength>100 | Split file to stay <= 100 lines. |
| 937 | src/AirGap/__Libraries/StellaOps.AirGap.Sync/Transport/RouterJobSyncTransport.cs | src/AirGap/__Libraries/StellaOps.AirGap.Sync/StellaOps.AirGap.Sync.csproj | AirGap | FAIL | 274 | FileLength>100 | Split file to stay <= 100 lines. |
| 938 | src/AirGap/StellaOps.AirGap.Controller/AssemblyInfo.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 4 | | |
| 939 | src/AirGap/StellaOps.AirGap.Controller/Program.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 28 | | |
| 940 | src/AirGap/StellaOps.AirGap.Controller/Auth/HeaderScopeAuthenticationHandler.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | FAIL | 107 | FileLength>100 | Split file to stay <= 100 lines. |
| 941 | src/AirGap/StellaOps.AirGap.Controller/DependencyInjection/AirGapControllerServiceCollectionExtensions.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | FAIL | 39 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 942 | src/AirGap/StellaOps.AirGap.Controller/Domain/AirGapState.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 30 | | |
| 943 | src/AirGap/StellaOps.AirGap.Controller/Endpoints/AirGapEndpoints.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | FAIL | 269 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 944 | src/AirGap/StellaOps.AirGap.Controller/Endpoints/RequestValidation.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | FAIL | 108 | FileLength>100 | Split file to stay <= 100 lines. |
| 945 | src/AirGap/StellaOps.AirGap.Controller/Endpoints/Contracts/AirGapStatusResponse.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 55 | | |
| 946 | src/AirGap/StellaOps.AirGap.Controller/Endpoints/Contracts/SealRequest.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 22 | | |
| 947 | src/AirGap/StellaOps.AirGap.Controller/Endpoints/Contracts/VerifyRequest.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 24 | | |
| 948 | src/AirGap/StellaOps.AirGap.Controller/Options/AirGapStartupOptions.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 45 | | |
| 949 | src/AirGap/StellaOps.AirGap.Controller/Options/AirGapTelemetryOptions.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 7 | | |
| 950 | src/AirGap/StellaOps.AirGap.Controller/Services/AirGapStartupDiagnosticsHostedService.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | FAIL | 175 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 951 | src/AirGap/StellaOps.AirGap.Controller/Services/AirGapStateService.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | FAIL | 119 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 952 | src/AirGap/StellaOps.AirGap.Controller/Services/AirGapTelemetry.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | FAIL | 179 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 953 | src/AirGap/StellaOps.AirGap.Controller/Services/ReplayVerificationService.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | FAIL | 40 | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
| 954 | src/AirGap/StellaOps.AirGap.Controller/Stores/IAirGapStateStore.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 10 | | |
| 955 | src/AirGap/StellaOps.AirGap.Controller/Stores/InMemoryAirGapStateStore.cs | src/AirGap/StellaOps.AirGap.Controller/StellaOps.AirGap.Controller.csproj | AirGap | PASS | 29 | | |
| 956 | src/AirGap/StellaOps.AirGap.Importer/Contracts/ReplayDepth.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 15 | | |
| 957 | src/AirGap/StellaOps.AirGap.Importer/Contracts/ReplayVerificationRequest.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 22 | | |
| 958 | src/AirGap/StellaOps.AirGap.Importer/Contracts/TrustRootConfig.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 18 | | |
| 959 | src/AirGap/StellaOps.AirGap.Importer/Models/BundleCatalogEntry.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 9 | | |
| 960 | src/AirGap/StellaOps.AirGap.Importer/Models/BundleItem.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 9 | | |
| 961 | src/AirGap/StellaOps.AirGap.Importer/Planning/BundleImportPlan.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 35 | | |
| 962 | src/AirGap/StellaOps.AirGap.Importer/Planning/BundleImportPlanner.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 40 | | |
| 963 | src/AirGap/StellaOps.AirGap.Importer/Policy/OfflineVerificationPolicy.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 214 | FileLength>100 | Split file to stay <= 100 lines. |
| 964 | src/AirGap/StellaOps.AirGap.Importer/Policy/OfflineVerificationPolicyLoader.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 134 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 965 | src/AirGap/StellaOps.AirGap.Importer/Quarantine/FileSystemQuarantineService.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 397 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 966 | src/AirGap/StellaOps.AirGap.Importer/Quarantine/IQuarantineService.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 56 | | |
| 967 | src/AirGap/StellaOps.AirGap.Importer/Quarantine/QuarantineOptions.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 31 | | |
| 968 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/ArtifactIndex.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 145 | FileLength>100 | Split file to stay <= 100 lines. |
| 969 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/EvidenceDirectoryDiscovery.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 91 | PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase. |
| 970 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/EvidenceGraph.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 334 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 971 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/EvidenceReconciler.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 396 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 972 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/JsonNormalizer.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 282 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 973 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/SourcePrecedenceLattice.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 265 | FileLength>100 | Split file to stay <= 100 lines. |
| 974 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/AttestationCollector.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 440 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 975 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/CycloneDxParser.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 344 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 976 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/DsseAttestationParser.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 302 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 977 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/IAttestationParser.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 205 | FileLength>100 | Split file to stay <= 100 lines. |
| 978 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/ISbomParser.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 189 | FileLength>100 | Split file to stay <= 100 lines. |
| 979 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/OpenVexParser.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 184 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 980 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/SbomCollector.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 175 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 981 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/SbomNormalizer.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 513 | FileLength>100 | Split file to stay <= 100 lines. |
| 982 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/SbomParserFactory.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 92 | AsyncNaming; ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async. |
| 983 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Parsers/SpdxParser.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 317 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 984 | src/AirGap/StellaOps.AirGap.Importer/Reconciliation/Signing/EvidenceGraphDsseSigner.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 184 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 985 | src/AirGap/StellaOps.AirGap.Importer/Repositories/IBundleCatalogRepository.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 10 | | |
| 986 | src/AirGap/StellaOps.AirGap.Importer/Repositories/IBundleItemRepository.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 10 | | |
| 987 | src/AirGap/StellaOps.AirGap.Importer/Repositories/InMemoryBundleRepositories.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 64 | | |
| 988 | src/AirGap/StellaOps.AirGap.Importer/Telemetry/OfflineKitLogFields.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 25 | | |
| 989 | src/AirGap/StellaOps.AirGap.Importer/Telemetry/OfflineKitLogScopes.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 22 | | |
| 990 | src/AirGap/StellaOps.AirGap.Importer/Telemetry/OfflineKitMetrics.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 143 | FileLength>100 | Split file to stay <= 100 lines. |
| 991 | src/AirGap/StellaOps.AirGap.Importer/Validation/BundleValidationResult.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 16 | | |
| 992 | src/AirGap/StellaOps.AirGap.Importer/Validation/DsseEnvelope.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 30 | | |
| 993 | src/AirGap/StellaOps.AirGap.Importer/Validation/DssePreAuthenticationEncoding.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 29 | | |
| 994 | src/AirGap/StellaOps.AirGap.Importer/Validation/DsseVerifier.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 212 | BlockingAsync; FileLength>100 | Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 995 | src/AirGap/StellaOps.AirGap.Importer/Validation/ImportValidator.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 450 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 996 | src/AirGap/StellaOps.AirGap.Importer/Validation/MerkleRootCalculator.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 80 | UsingInsideNamespace | Move using directives outside namespace. |
| 997 | src/AirGap/StellaOps.AirGap.Importer/Validation/ReferrerValidator.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 482 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 998 | src/AirGap/StellaOps.AirGap.Importer/Validation/RekorOfflineReceiptVerifier.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 657 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 999 | src/AirGap/StellaOps.AirGap.Importer/Validation/ReplayVerifier.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 61 | | |
| 1000 | src/AirGap/StellaOps.AirGap.Importer/Validation/RootRotationPolicy.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 33 | | |
| 1001 | src/AirGap/StellaOps.AirGap.Importer/Validation/RuleBundleValidator.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 434 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1002 | src/AirGap/StellaOps.AirGap.Importer/Validation/TrustStore.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 54 | | |
| 1003 | src/AirGap/StellaOps.AirGap.Importer/Validation/TufMetadataValidator.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 65 | | |
| 1004 | src/AirGap/StellaOps.AirGap.Importer/Versioning/BundleVersion.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | FAIL | 145 | FileLength>100 | Split file to stay <= 100 lines. |
| 1005 | src/AirGap/StellaOps.AirGap.Importer/Versioning/IBundleVersionStore.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 34 | | |
| 1006 | src/AirGap/StellaOps.AirGap.Importer/Versioning/IVersionMonotonicityChecker.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 27 | | |
| 1007 | src/AirGap/StellaOps.AirGap.Importer/Versioning/VersionMonotonicityChecker.cs | src/AirGap/StellaOps.AirGap.Importer/StellaOps.AirGap.Importer.csproj | AirGap | PASS | 96 | | |
| 1008 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.Analyzers/HttpClientUsageAnalyzer.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.Analyzers/StellaOps.AirGap.Policy.Analyzers.csproj | AirGap | FAIL | 108 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1009 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/AirGapEgressBlockedException.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | FAIL | 101 | FileLength>100 | Split file to stay <= 100 lines. |
| 1010 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/EgressDecision.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | PASS | 44 | | |
| 1011 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/EgressHttpClientFactory.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | PASS | 94 | | |
| 1012 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/EgressPolicy.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | FAIL | 245 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1013 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/EgressPolicyMode.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | PASS | 18 | | |
| 1014 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/EgressPolicyOptions.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | PASS | 100 | | |
| 1015 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/EgressPolicyServiceCollectionExtensions.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | FAIL | 295 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 1016 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/EgressRequest.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | PASS | 87 | | |
| 1017 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/EgressRule.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | FAIL | 128 | FileLength>100 | Split file to stay <= 100 lines. |
| 1018 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/EgressTransport.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | PASS | 28 | | |
| 1019 | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/IEgressPolicy.cs | src/AirGap/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy/StellaOps.AirGap.Policy.csproj | AirGap | PASS | 50 | | |
| 1020 | src/AirGap/StellaOps.AirGap.Time/Program.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 51 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1021 | src/AirGap/StellaOps.AirGap.Time/Config/AirGapOptionsValidator.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 46 | | |
| 1022 | src/AirGap/StellaOps.AirGap.Time/Controllers/TimeStatusController.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 87 | AsyncNaming; ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async. |
| 1023 | src/AirGap/StellaOps.AirGap.Time/Health/TimeAnchorHealthCheck.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 52 | AsyncNaming; ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async. |
| 1024 | src/AirGap/StellaOps.AirGap.Time/Hooks/StartupValidationExtensions.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 32 | BlockingAsync; ServiceLocator; UsingInsideNamespace | Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Replace .Result/.Wait/GetAwaiter().GetResult() with await. |
| 1025 | src/AirGap/StellaOps.AirGap.Time/Models/AirGapOptions.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 35 | | |
| 1026 | src/AirGap/StellaOps.AirGap.Time/Models/SetAnchorRequest.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 27 | | |
| 1027 | src/AirGap/StellaOps.AirGap.Time/Models/StalenessBudget.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 23 | | |
| 1028 | src/AirGap/StellaOps.AirGap.Time/Models/StalenessEvaluation.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 13 | | |
| 1029 | src/AirGap/StellaOps.AirGap.Time/Models/TimeAnchor.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 15 | | |
| 1030 | src/AirGap/StellaOps.AirGap.Time/Models/TimeStatus.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 17 | | |
| 1031 | src/AirGap/StellaOps.AirGap.Time/Models/TimeStatusDto.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 48 | | |
| 1032 | src/AirGap/StellaOps.AirGap.Time/Models/TimeTrustRoot.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 4 | | |
| 1033 | src/AirGap/StellaOps.AirGap.Time/Parsing/TimeAnchorValidationResult.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 11 | | |
| 1034 | src/AirGap/StellaOps.AirGap.Time/Parsing/TimeTokenFormat.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 8 | | |
| 1035 | src/AirGap/StellaOps.AirGap.Time/Parsing/TimeTokenParser.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 43 | | |
| 1036 | src/AirGap/StellaOps.AirGap.Time/Services/ITimeTokenVerifier.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 15 | | |
| 1037 | src/AirGap/StellaOps.AirGap.Time/Services/Rfc3161Verifier.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 341 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1038 | src/AirGap/StellaOps.AirGap.Time/Services/RoughtimeVerifier.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 432 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1039 | src/AirGap/StellaOps.AirGap.Time/Services/SealedStartupValidator.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 49 | AsyncNaming; ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async. |
| 1040 | src/AirGap/StellaOps.AirGap.Time/Services/StalenessCalculator.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 39 | | |
| 1041 | src/AirGap/StellaOps.AirGap.Time/Services/TimeAnchorLoader.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 80 | | |
| 1042 | src/AirGap/StellaOps.AirGap.Time/Services/TimeAnchorPolicyService.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 307 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1043 | src/AirGap/StellaOps.AirGap.Time/Services/TimeStatusService.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 64 | AsyncNaming; ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async. |
| 1044 | src/AirGap/StellaOps.AirGap.Time/Services/TimeTelemetry.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 94 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1045 | src/AirGap/StellaOps.AirGap.Time/Services/TimeTokenVerificationOptions.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 13 | | |
| 1046 | src/AirGap/StellaOps.AirGap.Time/Services/TimeVerificationService.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 32 | | |
| 1047 | src/AirGap/StellaOps.AirGap.Time/Services/TrustRootProvider.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | FAIL | 100 | UsingInsideNamespace | Move using directives outside namespace. |
| 1048 | src/AirGap/StellaOps.AirGap.Time/Stores/InMemoryTimeAnchorStore.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 32 | | |
| 1049 | src/AirGap/StellaOps.AirGap.Time/Stores/ITimeAnchorStore.cs | src/AirGap/StellaOps.AirGap.Time/StellaOps.AirGap.Time.csproj | AirGap | PASS | 10 | | |
| 1050 | src/Aoc/__Analyzers/StellaOps.Aoc.Analyzers/AocForbiddenFieldAnalyzer.cs | src/Aoc/__Analyzers/StellaOps.Aoc.Analyzers/StellaOps.Aoc.Analyzers.csproj | Aoc | FAIL | 633 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1051 | src/Aoc/__Libraries/StellaOps.Aoc.AspNetCore/Results/AocHttpResults.cs | src/Aoc/__Libraries/StellaOps.Aoc.AspNetCore/StellaOps.Aoc.AspNetCore.csproj | Aoc | PASS | 96 | | |
| 1052 | src/Aoc/__Libraries/StellaOps.Aoc.AspNetCore/Routing/AocGuardEndpointFilter.cs | src/Aoc/__Libraries/StellaOps.Aoc.AspNetCore/StellaOps.Aoc.AspNetCore.csproj | Aoc | FAIL | 144 | AsyncNaming; FileLength>100; ServiceLocator; UsingInsideNamespace | Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1053 | src/Aoc/__Libraries/StellaOps.Aoc.AspNetCore/Routing/AocGuardEndpointFilterExtensions.cs | src/Aoc/__Libraries/StellaOps.Aoc.AspNetCore/StellaOps.Aoc.AspNetCore.csproj | Aoc | PASS | 62 | | |
| 1054 | src/Aoc/__Libraries/StellaOps.Aoc/AocError.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | FAIL | 46 | BlockingAsync | Replace .Result/.Wait/GetAwaiter().GetResult() with await. |
| 1055 | src/Aoc/__Libraries/StellaOps.Aoc/AocForbiddenKeys.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | FAIL | 26 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1056 | src/Aoc/__Libraries/StellaOps.Aoc/AocGuardException.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | PASS | 18 | | |
| 1057 | src/Aoc/__Libraries/StellaOps.Aoc/AocGuardExtensions.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | PASS | 23 | | |
| 1058 | src/Aoc/__Libraries/StellaOps.Aoc/AocGuardOptions.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | FAIL | 59 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1059 | src/Aoc/__Libraries/StellaOps.Aoc/AocGuardResult.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | PASS | 15 | | |
| 1060 | src/Aoc/__Libraries/StellaOps.Aoc/AocViolation.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | PASS | 14 | | |
| 1061 | src/Aoc/__Libraries/StellaOps.Aoc/AocViolationCode.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | PASS | 35 | | |
| 1062 | src/Aoc/__Libraries/StellaOps.Aoc/AocWriteGuard.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | FAIL | 194 | FileLength>100 | Split file to stay <= 100 lines. |
| 1063 | src/Aoc/__Libraries/StellaOps.Aoc/ServiceCollectionExtensions.cs | src/Aoc/__Libraries/StellaOps.Aoc/StellaOps.Aoc.csproj | Aoc | PASS | 18 | | |
| 1064 | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/Builder/SigstoreBundleBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/StellaOps.Attestor.Bundle.csproj | Attestor | FAIL | 312 | FileLength>100 | Split file to stay <= 100 lines. |
| 1065 | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/Models/InclusionProof.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/StellaOps.Attestor.Bundle.csproj | Attestor | PASS | 59 | | |
| 1066 | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/Models/SigstoreBundle.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/StellaOps.Attestor.Bundle.csproj | Attestor | FAIL | 102 | FileLength>100 | Split file to stay <= 100 lines. |
| 1067 | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/Models/TransparencyLogEntry.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/StellaOps.Attestor.Bundle.csproj | Attestor | FAIL | 103 | FileLength>100 | Split file to stay <= 100 lines. |
| 1068 | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/Models/VerificationMaterial.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/StellaOps.Attestor.Bundle.csproj | Attestor | FAIL | 102 | FileLength>100 | Split file to stay <= 100 lines. |
| 1069 | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/Serialization/SigstoreBundleSerializer.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/StellaOps.Attestor.Bundle.csproj | Attestor | FAIL | 196 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1070 | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/Verification/BundleVerificationResult.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/StellaOps.Attestor.Bundle.csproj | Attestor | FAIL | 172 | FileLength>100 | Split file to stay <= 100 lines. |
| 1071 | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/Verification/SigstoreBundleVerifier.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundle/StellaOps.Attestor.Bundle.csproj | Attestor | FAIL | 672 | BlockingAsync; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1072 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Abstractions/IAttestationBundler.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | FAIL | 158 | FileLength>100 | Split file to stay <= 100 lines. |
| 1073 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Abstractions/IBundleAggregator.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | PASS | 52 | | |
| 1074 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Abstractions/IBundleStore.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | FAIL | 139 | FileLength>100 | Split file to stay <= 100 lines. |
| 1075 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Abstractions/IOrgKeySigner.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | PASS | 73 | | |
| 1076 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Configuration/BundlingOptions.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | FAIL | 388 | FileLength>100 | Split file to stay <= 100 lines. |
| 1077 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Models/AttestationBundle.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | FAIL | 362 | FileLength>100 | Split file to stay <= 100 lines. |
| 1078 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Services/AttestationBundler.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | FAIL | 399 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1079 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Services/OfflineKitBundleProvider.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | FAIL | 364 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1080 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Services/RetentionPolicyEnforcer.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | FAIL | 534 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1081 | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/Signing/KmsOrgKeySigner.cs | src/Attestor/__Libraries/StellaOps.Attestor.Bundling/StellaOps.Attestor.Bundling.csproj | Attestor | FAIL | 363 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1082 | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/ReleaseEvidencePackBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/StellaOps.Attestor.EvidencePack.csproj | Attestor | FAIL | 416 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1083 | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/ReleaseEvidencePackSerializer.cs | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/StellaOps.Attestor.EvidencePack.csproj | Attestor | FAIL | 775 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1084 | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/Models/ReleaseEvidencePackManifest.cs | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/StellaOps.Attestor.EvidencePack.csproj | Attestor | FAIL | 347 | FileLength>100 | Split file to stay <= 100 lines. |
| 1085 | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/Models/VerificationReplayLog.cs | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/StellaOps.Attestor.EvidencePack.csproj | Attestor | FAIL | 237 | FileLength>100 | Split file to stay <= 100 lines. |
| 1086 | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/Services/ReplayLogSerializerContext.cs | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/StellaOps.Attestor.EvidencePack.csproj | Attestor | PASS | 24 | | |
| 1087 | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/Services/VerificationReplayLogBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.EvidencePack/StellaOps.Attestor.EvidencePack.csproj | Attestor | FAIL | 336 | BlockingAsync; FileLength>100 | Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1088 | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/FixChainAttestationService.cs | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/StellaOps.Attestor.FixChain.csproj | Attestor | FAIL | 508 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1089 | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/FixChainModels.cs | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/StellaOps.Attestor.FixChain.csproj | Attestor | FAIL | 143 | FileLength>100 | Split file to stay <= 100 lines. |
| 1090 | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/FixChainPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/StellaOps.Attestor.FixChain.csproj | Attestor | FAIL | 146 | FileLength>100 | Split file to stay <= 100 lines. |
| 1091 | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/FixChainStatementBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/StellaOps.Attestor.FixChain.csproj | Attestor | FAIL | 278 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1092 | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/FixChainValidator.cs | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/StellaOps.Attestor.FixChain.csproj | Attestor | FAIL | 249 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1093 | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/ServiceCollectionExtensions.cs | src/Attestor/__Libraries/StellaOps.Attestor.FixChain/StellaOps.Attestor.FixChain.csproj | Attestor | PASS | 67 | | |
| 1094 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/GraphRootAttestor.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | FAIL | 694 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1095 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/GraphRootAttestorOptions.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | PASS | 34 | | |
| 1096 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/GraphRootServiceCollectionExtensions.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | FAIL | 58 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1097 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/GraphType.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | PASS | 63 | | |
| 1098 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/IGraphRootAttestor.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | PASS | 40 | | |
| 1099 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/IMerkleRootComputer.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | PASS | 23 | | |
| 1100 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/Sha256MerkleRootComputer.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | PASS | 57 | | |
| 1101 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/Models/GraphRootAttestation.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | PASS | 67 | | |
| 1102 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/Models/GraphRootAttestationRequest.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | PASS | 71 | | |
| 1103 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/Models/GraphRootPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | FAIL | 121 | FileLength>100 | Split file to stay <= 100 lines. |
| 1104 | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/Models/GraphRootResults.cs | src/Attestor/__Libraries/StellaOps.Attestor.GraphRoot/StellaOps.Attestor.GraphRoot.csproj | Attestor | FAIL | 106 | FileLength>100 | Split file to stay <= 100 lines. |
| 1105 | src/Attestor/__Libraries/StellaOps.Attestor.Oci/Services/IOciAttestationAttacher.cs | src/Attestor/__Libraries/StellaOps.Attestor.Oci/StellaOps.Attestor.Oci.csproj | Attestor | FAIL | 361 | FileLength>100 | Split file to stay <= 100 lines. |
| 1106 | src/Attestor/__Libraries/StellaOps.Attestor.Oci/Services/IOciRegistryClient.cs | src/Attestor/__Libraries/StellaOps.Attestor.Oci/StellaOps.Attestor.Oci.csproj | Attestor | FAIL | 187 | FileLength>100 | Split file to stay <= 100 lines. |
| 1107 | src/Attestor/__Libraries/StellaOps.Attestor.Oci/Services/ISbomOciPublisher.cs | src/Attestor/__Libraries/StellaOps.Attestor.Oci/StellaOps.Attestor.Oci.csproj | Attestor | FAIL | 167 | FileLength>100 | Split file to stay <= 100 lines. |
| 1108 | src/Attestor/__Libraries/StellaOps.Attestor.Oci/Services/OrasAttestationAttacher.cs | src/Attestor/__Libraries/StellaOps.Attestor.Oci/StellaOps.Attestor.Oci.csproj | Attestor | FAIL | 473 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1109 | src/Attestor/__Libraries/StellaOps.Attestor.Oci/Services/SbomOciPublisher.cs | src/Attestor/__Libraries/StellaOps.Attestor.Oci/StellaOps.Attestor.Oci.csproj | Attestor | FAIL | 307 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1110 | src/Attestor/__Libraries/StellaOps.Attestor.Offline/Abstractions/IOfflineRootStore.cs | src/Attestor/__Libraries/StellaOps.Attestor.Offline/StellaOps.Attestor.Offline.csproj | Attestor | FAIL | 119 | FileLength>100 | Split file to stay <= 100 lines. |
| 1111 | src/Attestor/__Libraries/StellaOps.Attestor.Offline/Abstractions/IOfflineVerifier.cs | src/Attestor/__Libraries/StellaOps.Attestor.Offline/StellaOps.Attestor.Offline.csproj | Attestor | PASS | 71 | | |
| 1112 | src/Attestor/__Libraries/StellaOps.Attestor.Offline/Abstractions/IRuleBundleSignatureVerifier.cs | src/Attestor/__Libraries/StellaOps.Attestor.Offline/StellaOps.Attestor.Offline.csproj | Attestor | FAIL | 169 | FileLength>100 | Split file to stay <= 100 lines. |
| 1113 | src/Attestor/__Libraries/StellaOps.Attestor.Offline/Models/OfflineVerificationResult.cs | src/Attestor/__Libraries/StellaOps.Attestor.Offline/StellaOps.Attestor.Offline.csproj | Attestor | FAIL | 113 | FileLength>100 | Split file to stay <= 100 lines. |
| 1114 | src/Attestor/__Libraries/StellaOps.Attestor.Offline/Services/FileSystemRootStore.cs | src/Attestor/__Libraries/StellaOps.Attestor.Offline/StellaOps.Attestor.Offline.csproj | Attestor | FAIL | 644 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1115 | src/Attestor/__Libraries/StellaOps.Attestor.Offline/Services/OfflineVerifier.cs | src/Attestor/__Libraries/StellaOps.Attestor.Offline/StellaOps.Attestor.Offline.csproj | Attestor | FAIL | 1070 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1116 | src/Attestor/__Libraries/StellaOps.Attestor.Offline/Services/RuleBundleSignatureVerifier.cs | src/Attestor/__Libraries/StellaOps.Attestor.Offline/StellaOps.Attestor.Offline.csproj | Attestor | FAIL | 348 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1117 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/ProofChainDbContext.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | FAIL | 226 | FileLength>100 | Split file to stay <= 100 lines. |
| 1118 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Entities/AuditLogEntity.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | PASS | 61 | | |
| 1119 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Entities/DsseEnvelopeEntity.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | PASS | 81 | | |
| 1120 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Entities/RekorEntryEntity.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | PASS | 77 | | |
| 1121 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Entities/SbomEntryEntity.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | PASS | 79 | | |
| 1122 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Entities/SpineEntity.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | PASS | 83 | | |
| 1123 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Entities/TrustAnchorEntity.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | PASS | 77 | | |
| 1124 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Entities/VerdictLedgerEntry.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | PASS | 76 | | |
| 1125 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Repositories/IProofChainRepository.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | FAIL | 208 | FileLength>100 | Split file to stay <= 100 lines. |
| 1126 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Repositories/IVerdictLedgerRepository.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | PASS | 98 | | |
| 1127 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Repositories/PostgresVerdictLedgerRepository.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | FAIL | 241 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1128 | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/Services/TrustAnchorMatcher.cs | src/Attestor/__Libraries/StellaOps.Attestor.Persistence/StellaOps.Attestor.Persistence.csproj | Attestor | FAIL | 327 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1129 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/ProofHashing.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 48 | | |
| 1130 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Assembly/IProofSpineAssembler.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 200 | FileLength>100 | Split file to stay <= 100 lines. |
| 1131 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Audit/AuditHashLogger.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 285 | FileLength>100 | Split file to stay <= 100 lines. |
| 1132 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Builders/IStatementBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 119 | FileLength>100 | Split file to stay <= 100 lines. |
| 1133 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Builders/StatementBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 138 | FileLength>100 | Split file to stay <= 100 lines. |
| 1134 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/ChangeTrace/ChangeTraceAttestationService.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 210 | FileLength>100 | Split file to stay <= 100 lines. |
| 1135 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/ChangeTrace/IChangeTraceAttestationService.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 59 | | |
| 1136 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Generators/BackportProofGenerator.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 557 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1137 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Generators/BinaryFingerprintEvidenceGenerator.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 216 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1138 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Generators/VexProofIntegrator.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 299 | FileLength>100 | Split file to stay <= 100 lines. |
| 1139 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Graph/InMemoryProofGraphService.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 292 | FileLength>100 | Split file to stay <= 100 lines. |
| 1140 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Graph/IProofGraphService.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 277 | FileLength>100 | Split file to stay <= 100 lines. |
| 1141 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Identifiers/ContentAddressedId.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 170 | FileLength>100 | Split file to stay <= 100 lines. |
| 1142 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Identifiers/ContentAddressedIdGenerator.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 171 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1143 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Identifiers/GraphRevisionId.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 33 | | |
| 1144 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Identifiers/IContentAddressedIdGenerator.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 33 | | |
| 1145 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Identifiers/SbomEntryId.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 85 | | |
| 1146 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Identifiers/TrustAnchorId.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 16 | | |
| 1147 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Internal/Hex.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 34 | | |
| 1148 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Json/IJsonCanonicalizer.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 25 | | |
| 1149 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Json/IJsonSchemaValidator.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 362 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1150 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Json/Rfc8785JsonCanonicalizer.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 317 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1151 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Linking/ComponentRefExtractor.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 266 | FileLength>100 | Split file to stay <= 100 lines. |
| 1152 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/MediaTypes/AIArtifactMediaTypes.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 90 | | |
| 1153 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Merkle/DeterministicMerkleTreeBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 215 | FileLength>100 | Split file to stay <= 100 lines. |
| 1154 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Merkle/IMerkleTreeBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 106 | FileLength>100 | Split file to stay <= 100 lines. |
| 1155 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Models/ProofBlob.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 101 | FileLength>100 | Split file to stay <= 100 lines. |
| 1156 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Models/UnknownsSummary.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 56 | | |
| 1157 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Pipeline/IProofChainPipeline.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 152 | FileLength>100 | Split file to stay <= 100 lines. |
| 1158 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/BinaryFingerprintEvidencePredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 216 | FileLength>100 | Split file to stay <= 100 lines. |
| 1159 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/BinaryMicroWitnessPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 263 | FileLength>100 | Split file to stay <= 100 lines. |
| 1160 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/BudgetCheckPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 179 | FileLength>100 | Split file to stay <= 100 lines. |
| 1161 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/ChangeTracePredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 239 | FileLength>100 | Split file to stay <= 100 lines. |
| 1162 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/DeltaVerdictPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 192 | FileLength>100 | Split file to stay <= 100 lines. |
| 1163 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/EvidencePredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 30 | | |
| 1164 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/PolicyDecisionPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 119 | FileLength>100 | Split file to stay <= 100 lines. |
| 1165 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/ProofSpinePredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 27 | | |
| 1166 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/ReachabilityDriftPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 222 | FileLength>100 | Split file to stay <= 100 lines. |
| 1167 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/ReachabilitySubgraphPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 95 | | |
| 1168 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/ReasoningPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 28 | | |
| 1169 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/SbomDeltaPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 240 | FileLength>100 | Split file to stay <= 100 lines. |
| 1170 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/UnknownsBudgetPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 109 | FileLength>100 | Split file to stay <= 100 lines. |
| 1171 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/VerdictDeltaPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 288 | FileLength>100 | Split file to stay <= 100 lines. |
| 1172 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/VexAttestationPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 218 | FileLength>100 | Split file to stay <= 100 lines. |
| 1173 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/VexDeltaPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 204 | FileLength>100 | Split file to stay <= 100 lines. |
| 1174 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/VexPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 29 | | |
| 1175 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/AI/AIArtifactBasePredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 163 | FileLength>100 | Split file to stay <= 100 lines. |
| 1176 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/AI/AIAuthorityClassifier.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 367 | FileLength>100 | Split file to stay <= 100 lines. |
| 1177 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/AI/AIExplanationPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 135 | FileLength>100 | Split file to stay <= 100 lines. |
| 1178 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/AI/AIPolicyDraftPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 259 | FileLength>100 | Split file to stay <= 100 lines. |
| 1179 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/AI/AIRemediationPlanPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 274 | FileLength>100 | Split file to stay <= 100 lines. |
| 1180 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Predicates/AI/AIVexDraftPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 156 | FileLength>100 | Split file to stay <= 100 lines. |
| 1181 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Receipts/IReceiptGenerator.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 142 | FileLength>100 | Split file to stay <= 100 lines. |
| 1182 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Rekor/EnhancedRekorProof.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 289 | FileLength>100 | Split file to stay <= 100 lines. |
| 1183 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Replay/AIArtifactReplayManifest.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 152 | FileLength>100 | Split file to stay <= 100 lines. |
| 1184 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Replay/IAIArtifactReplayer.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 170 | FileLength>100 | Split file to stay <= 100 lines. |
| 1185 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Sbom/CycloneDxSubjectExtractor.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 83 | UsingInsideNamespace | Move using directives outside namespace. |
| 1186 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Sbom/ISbomSubjectExtractor.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 15 | | |
| 1187 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Services/UnknownsAggregator.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 138 | BlockingAsync; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1188 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Signing/DssePreAuthenticationEncoding.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 43 | | |
| 1189 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Signing/IProofChainKeyStore.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 21 | | |
| 1190 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Signing/IProofChainSigner.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 124 | FileLength>100 | Split file to stay <= 100 lines. |
| 1191 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Signing/ProofChainSigner.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 198 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1192 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/BinaryMicroWitnessStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 30 | | |
| 1193 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/ChangeTraceStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 29 | | |
| 1194 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/DeltaVerdictStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 23 | | |
| 1195 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/EvidenceStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 71 | | |
| 1196 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/InTotoStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 49 | | |
| 1197 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/ProofSpineStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 79 | | |
| 1198 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/ReachabilityDriftStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 258 | FileLength>100 | Split file to stay <= 100 lines. |
| 1199 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/ReachabilitySubgraphStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 23 | | |
| 1200 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/ReachabilityWitnessStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 317 | FileLength>100 | Split file to stay <= 100 lines. |
| 1201 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/ReasoningStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 90 | | |
| 1202 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/SbomLinkageStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 137 | FileLength>100 | Split file to stay <= 100 lines. |
| 1203 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/UncertaintyBudgetStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 258 | FileLength>100 | Split file to stay <= 100 lines. |
| 1204 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/UncertaintyStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 163 | FileLength>100 | Split file to stay <= 100 lines. |
| 1205 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/VerdictReceiptStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 202 | FileLength>100 | Split file to stay <= 100 lines. |
| 1206 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/VexVerdictStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 70 | | |
| 1207 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/AI/AIExplanationStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 25 | | |
| 1208 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/AI/AIPolicyDraftStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 25 | | |
| 1209 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/AI/AIRemediationPlanStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 25 | | |
| 1210 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Statements/AI/AIVexDraftStatement.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | PASS | 25 | | |
| 1211 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Verification/AIArtifactVerificationStep.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 444 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1212 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Verification/IVerificationPipeline.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 200 | FileLength>100 | Split file to stay <= 100 lines. |
| 1213 | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/Verification/VerificationPipeline.cs | src/Attestor/__Libraries/StellaOps.Attestor.ProofChain/StellaOps.Attestor.ProofChain.csproj | Attestor | FAIL | 718 | BlockingAsync; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1214 | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/BuildAttestationMapper.cs | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/StellaOps.Attestor.Spdx3.csproj | Attestor | FAIL | 149 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1215 | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/BuildRelationshipBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/StellaOps.Attestor.Spdx3.csproj | Attestor | FAIL | 162 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1216 | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/CombinedDocumentBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/StellaOps.Attestor.Spdx3.csproj | Attestor | FAIL | 284 | FileLength>100 | Split file to stay <= 100 lines. |
| 1217 | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/DsseSpdx3Signer.cs | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/StellaOps.Attestor.Spdx3.csproj | Attestor | FAIL | 478 | FileLength>100 | Split file to stay <= 100 lines. |
| 1218 | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/IBuildAttestationMapper.cs | src/Attestor/__Libraries/StellaOps.Attestor.Spdx3/StellaOps.Attestor.Spdx3.csproj | Attestor | FAIL | 173 | FileLength>100 | Split file to stay <= 100 lines. |
| 1219 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/IPredicateParser.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 33 | | |
| 1220 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/IPredicateTimestampMetadata.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 60 | | |
| 1221 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/IStandardPredicateRegistry.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 33 | | |
| 1222 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/JsonCanonicalizer.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 42 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1223 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/PredicateParseResult.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 67 | | |
| 1224 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/SbomExtractionResult.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 36 | | |
| 1225 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StandardPredicateRegistry.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 87 | | |
| 1226 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/BinaryDiff/BinaryDiffDsseSigner.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 86 | | |
| 1227 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/BinaryDiff/BinaryDiffDsseVerifier.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 215 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1228 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/BinaryDiff/BinaryDiffModels.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 156 | FileLength>100 | Split file to stay <= 100 lines. |
| 1229 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/BinaryDiff/BinaryDiffOptions.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 13 | | |
| 1230 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/BinaryDiff/BinaryDiffPredicateBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 305 | FileLength>100 | Split file to stay <= 100 lines. |
| 1231 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/BinaryDiff/BinaryDiffPredicateSerializer.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 160 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1232 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/BinaryDiff/BinaryDiffSchema.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 249 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1233 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/BinaryDiff/ServiceCollectionExtensions.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 33 | | |
| 1234 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Canonicalization/ISbomCanonicalizer.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 56 | | |
| 1235 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Canonicalization/SbomCanonicalizer.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 126 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1236 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Licensing/SpdxLicenseExpressions.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 36 | | |
| 1237 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Licensing/SpdxLicenseList.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 408 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1238 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Models/SbomDocument.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 3784 | FileLength>100 | Split file to stay <= 100 lines. |
| 1239 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Parsers/CycloneDxPredicateParser.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 302 | FileLength>100 | Split file to stay <= 100 lines. |
| 1240 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Parsers/SlsaProvenancePredicateParser.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 269 | FileLength>100 | Split file to stay <= 100 lines. |
| 1241 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Parsers/SpdxPredicateParser.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 257 | FileLength>100 | Split file to stay <= 100 lines. |
| 1242 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Validation/SlsaSchemaValidator.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 437 | FileLength>100 | Split file to stay <= 100 lines. |
| 1243 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Validation/SlsaValidationOptions.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 95 | | |
| 1244 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/VexOverride/VexOverridePredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 166 | FileLength>100 | Split file to stay <= 100 lines. |
| 1245 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/VexOverride/VexOverridePredicateBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 335 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1246 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/VexOverride/VexOverridePredicateParser.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 440 | FileLength>100 | Split file to stay <= 100 lines. |
| 1247 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Writers/CycloneDxTimestampExtension.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 134 | FileLength>100 | Split file to stay <= 100 lines. |
| 1248 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Writers/CycloneDxWriter.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 3655 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1249 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Writers/ISbomWriter.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 63 | | |
| 1250 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Writers/SpdxTimestampExtension.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 208 | FileLength>100 | Split file to stay <= 100 lines. |
| 1251 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Writers/SpdxWriter.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | FAIL | 3523 | FileLength>100 | Split file to stay <= 100 lines. |
| 1252 | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/Writers/SpdxWriterOptions.cs | src/Attestor/__Libraries/StellaOps.Attestor.StandardPredicates/StellaOps.Attestor.StandardPredicates.csproj | Attestor | PASS | 19 | | |
| 1253 | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/AttestationTimestampPolicyContext.cs | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/StellaOps.Attestor.Timestamping.csproj | Attestor | FAIL | 236 | FileLength>100 | Split file to stay <= 100 lines. |
| 1254 | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/AttestationTimestampService.cs | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/StellaOps.Attestor.Timestamping.csproj | Attestor | FAIL | 310 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1255 | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/IAttestationTimestampService.cs | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/StellaOps.Attestor.Timestamping.csproj | Attestor | FAIL | 268 | FileLength>100 | Split file to stay <= 100 lines. |
| 1256 | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/ITimeCorrelationValidator.cs | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/StellaOps.Attestor.Timestamping.csproj | Attestor | FAIL | 195 | FileLength>100 | Split file to stay <= 100 lines. |
| 1257 | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/TimeCorrelationValidator.cs | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/StellaOps.Attestor.Timestamping.csproj | Attestor | FAIL | 202 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1258 | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/TimestampedAttestation.cs | src/Attestor/__Libraries/StellaOps.Attestor.Timestamping/StellaOps.Attestor.Timestamping.csproj | Attestor | FAIL | 127 | FileLength>100 | Split file to stay <= 100 lines. |
| 1259 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/ITufClient.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 189 | BlockingAsync; FileLength>100 | Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1260 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/SigstoreServiceMapLoader.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 331 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1261 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/TrustRepoOptions.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 158 | FileLength>100 | Split file to stay <= 100 lines. |
| 1262 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/TrustRepoServiceCollectionExtensions.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 175 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 1263 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/TufClient.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 602 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1264 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/TufKeyLoader.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 321 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1265 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/TufMetadataStore.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 369 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1266 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/TufMetadataVerifier.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 343 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1267 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/Models/SigstoreServiceMap.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 186 | FileLength>100 | Split file to stay <= 100 lines. |
| 1268 | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/Models/TufModels.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustRepo/StellaOps.Attestor.TrustRepo.csproj | Attestor | FAIL | 232 | FileLength>100 | Split file to stay <= 100 lines. |
| 1269 | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/JsonCanonicalizer.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/StellaOps.Attestor.TrustVerdict.csproj | Attestor | FAIL | 58 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1270 | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/TrustVerdictServiceCollectionExtensions.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/StellaOps.Attestor.TrustVerdict.csproj | Attestor | FAIL | 143 | FileLength>100 | Split file to stay <= 100 lines. |
| 1271 | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/Caching/TrustVerdictCache.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/StellaOps.Attestor.TrustVerdict.csproj | Attestor | FAIL | 544 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1272 | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/Evidence/TrustEvidenceMerkleBuilder.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/StellaOps.Attestor.TrustVerdict.csproj | Attestor | FAIL | 382 | FileLength>100 | Split file to stay <= 100 lines. |
| 1273 | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/Oci/TrustVerdictOciAttacher.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/StellaOps.Attestor.TrustVerdict.csproj | Attestor | FAIL | 406 | FileLength>100 | Split file to stay <= 100 lines. |
| 1274 | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/Persistence/TrustVerdictRepository.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/StellaOps.Attestor.TrustVerdict.csproj | Attestor | FAIL | 629 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1275 | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/Predicates/TrustVerdictPredicate.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/StellaOps.Attestor.TrustVerdict.csproj | Attestor | FAIL | 502 | FileLength>100 | Split file to stay <= 100 lines. |
| 1276 | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/Services/TrustVerdictService.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/StellaOps.Attestor.TrustVerdict.csproj | Attestor | FAIL | 612 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1277 | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/Telemetry/TrustVerdictMetrics.cs | src/Attestor/__Libraries/StellaOps.Attestor.TrustVerdict/StellaOps.Attestor.TrustVerdict.csproj | Attestor | FAIL | 300 | FileLength>100 | Split file to stay <= 100 lines. |
| 1278 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/ServiceCollectionExtensions.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 104 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 1279 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Events/IdentityAlertEvent.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 205 | FileLength>100 | Split file to stay <= 100 lines. |
| 1280 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Events/IdentityAlertEventKinds.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | PASS | 47 | | |
| 1281 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Matching/IdentityMatcher.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 219 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1282 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Matching/IIdentityMatcher.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | PASS | 38 | | |
| 1283 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Matching/PatternCompiler.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 341 | FileLength>100 | Split file to stay <= 100 lines. |
| 1284 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Models/IdentityAlertSeverity.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | PASS | 33 | | |
| 1285 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Models/IdentityMatchResult.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 129 | FileLength>100 | Split file to stay <= 100 lines. |
| 1286 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Models/WatchedIdentity.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 259 | FileLength>100 | Split file to stay <= 100 lines. |
| 1287 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Models/WatchlistMatchMode.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | PASS | 43 | | |
| 1288 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Models/WatchlistScope.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | PASS | 36 | | |
| 1289 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Monitoring/IdentityMonitorBackgroundService.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 271 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1290 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Monitoring/IdentityMonitorService.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 237 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1291 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Monitoring/IIdentityAlertPublisher.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | PASS | 84 | | |
| 1292 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Monitoring/WatchlistMonitorOptions.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | PASS | 99 | | |
| 1293 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Storage/InMemoryWatchlistRepository.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 210 | FileLength>100 | Split file to stay <= 100 lines. |
| 1294 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Storage/IWatchlistRepository.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 153 | FileLength>100 | Split file to stay <= 100 lines. |
| 1295 | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/Storage/PostgresWatchlistRepository.cs | src/Attestor/__Libraries/StellaOps.Attestor.Watchlist/StellaOps.Attestor.Watchlist.csproj | Attestor | FAIL | 399 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1296 | src/Attestor/StellaOps.Attestation/DsseEnvelopeExtensions.cs | src/Attestor/StellaOps.Attestation/StellaOps.Attestation.csproj | Attestor | PASS | 95 | | |
| 1297 | src/Attestor/StellaOps.Attestation/DsseHelper.cs | src/Attestor/StellaOps.Attestation/StellaOps.Attestation.csproj | Attestor | FAIL | 67 | AsyncNaming; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase. |
| 1298 | src/Attestor/StellaOps.Attestation/DsseVerifier.cs | src/Attestor/StellaOps.Attestation/StellaOps.Attestation.csproj | Attestor | FAIL | 303 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1299 | src/Attestor/StellaOps.Attestation/IAuthoritySigner.cs | src/Attestor/StellaOps.Attestation/StellaOps.Attestation.csproj | Attestor | PASS | 12 | | |
| 1300 | src/Attestor/StellaOps.Attestation/IDsseVerifier.cs | src/Attestor/StellaOps.Attestation/StellaOps.Attestation.csproj | Attestor | FAIL | 152 | FileLength>100 | Split file to stay <= 100 lines. |
| 1301 | src/Attestor/StellaOps.Attestation/Models.cs | src/Attestor/StellaOps.Attestation/StellaOps.Attestation.csproj | Attestor | PASS | 15 | | |
| 1302 | src/Attestor/StellaOps.Attestor.Envelope/DsseCompressionAlgorithm.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | PASS | 9 | | |
| 1303 | src/Attestor/StellaOps.Attestor.Envelope/DsseDetachedPayloadReference.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | PASS | 61 | | |
| 1304 | src/Attestor/StellaOps.Attestor.Envelope/DsseEnvelope.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | PASS | 49 | | |
| 1305 | src/Attestor/StellaOps.Attestor.Envelope/DsseEnvelopeSerializationOptions.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | PASS | 15 | | |
| 1306 | src/Attestor/StellaOps.Attestor.Envelope/DsseEnvelopeSerializationResult.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | PASS | 39 | | |
| 1307 | src/Attestor/StellaOps.Attestor.Envelope/DsseEnvelopeSerializer.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | FAIL | 319 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1308 | src/Attestor/StellaOps.Attestor.Envelope/DssePreAuthenticationEncoding.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | FAIL | 48 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1309 | src/Attestor/StellaOps.Attestor.Envelope/DsseSignature.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | PASS | 49 | | |
| 1310 | src/Attestor/StellaOps.Attestor.Envelope/EnvelopeKey.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | FAIL | 303 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1311 | src/Attestor/StellaOps.Attestor.Envelope/EnvelopeKeyIdCalculator.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | FAIL | 56 | UsingInsideNamespace | Move using directives outside namespace. |
| 1312 | src/Attestor/StellaOps.Attestor.Envelope/EnvelopeSignature.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | FAIL | 49 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1313 | src/Attestor/StellaOps.Attestor.Envelope/EnvelopeSignatureResult.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | FAIL | 57 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1314 | src/Attestor/StellaOps.Attestor.Envelope/EnvelopeSignatureService.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | FAIL | 192 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1315 | src/Attestor/StellaOps.Attestor.Envelope/__Tests/StellaOps.Attestor.Envelope.Tests/DsseEnvelopeSerializerTests.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | FAIL | 161 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1316 | src/Attestor/StellaOps.Attestor.Envelope/__Tests/StellaOps.Attestor.Envelope.Tests/EnvelopeSignatureServiceTests.cs | src/Attestor/StellaOps.Attestor.Envelope/StellaOps.Attestor.Envelope.csproj | Attestor | FAIL | 60 | UsingInsideNamespace | Move using directives outside namespace. |
| 1317 | src/Attestor/StellaOps.Attestor.TileProxy/Program.cs | src/Attestor/StellaOps.Attestor.TileProxy/StellaOps.Attestor.TileProxy.csproj | Attestor | FAIL | 138 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 1318 | src/Attestor/StellaOps.Attestor.TileProxy/TileProxyOptions.cs | src/Attestor/StellaOps.Attestor.TileProxy/StellaOps.Attestor.TileProxy.csproj | Attestor | FAIL | 199 | FileLength>100 | Split file to stay <= 100 lines. |
| 1319 | src/Attestor/StellaOps.Attestor.TileProxy/Endpoints/TileEndpoints.cs | src/Attestor/StellaOps.Attestor.TileProxy/StellaOps.Attestor.TileProxy.csproj | Attestor | FAIL | 288 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1320 | src/Attestor/StellaOps.Attestor.TileProxy/Jobs/TileSyncJob.cs | src/Attestor/StellaOps.Attestor.TileProxy/StellaOps.Attestor.TileProxy.csproj | Attestor | FAIL | 279 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1321 | src/Attestor/StellaOps.Attestor.TileProxy/Services/ContentAddressedTileStore.cs | src/Attestor/StellaOps.Attestor.TileProxy/StellaOps.Attestor.TileProxy.csproj | Attestor | FAIL | 435 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1322 | src/Attestor/StellaOps.Attestor.TileProxy/Services/TileProxyService.cs | src/Attestor/StellaOps.Attestor.TileProxy/StellaOps.Attestor.TileProxy.csproj | Attestor | FAIL | 411 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1323 | src/Attestor/StellaOps.Attestor.Verify/AttestorVerificationEngine.cs | src/Attestor/StellaOps.Attestor.Verify/StellaOps.Attestor.Verify.csproj | Attestor | FAIL | 1016 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1324 | src/Attestor/StellaOps.Attestor.Verify/IAttestorVerificationEngine.cs | src/Attestor/StellaOps.Attestor.Verify/StellaOps.Attestor.Verify.csproj | Attestor | PASS | 15 | | |
| 1325 | src/Attestor/StellaOps.Attestor.Verify/Providers/DistributedVerificationProvider.cs | src/Attestor/StellaOps.Attestor.Verify/StellaOps.Attestor.Verify.csproj | Attestor | FAIL | 440 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 1326 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/IProofEmitter.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 188 | FileLength>100 | Split file to stay <= 100 lines. |
| 1327 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/PathWitnessPredicateTypes.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 70 | | |
| 1328 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/PoEArtifactGenerator.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 246 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1329 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/PoEModels.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 240 | FileLength>100 | Split file to stay <= 100 lines. |
| 1330 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Audit/AttestorAuditRecord.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 43 | | |
| 1331 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Bulk/BulkVerificationModels.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 96 | | |
| 1332 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Bulk/IBulkVerificationJobStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 19 | | |
| 1333 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/AttestationChain.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 244 | FileLength>100 | Split file to stay <= 100 lines. |
| 1334 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/AttestationChainBuilder.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 346 | FileLength>100 | Split file to stay <= 100 lines. |
| 1335 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/AttestationChainValidator.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 335 | FileLength>100 | Split file to stay <= 100 lines. |
| 1336 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/AttestationLink.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 144 | FileLength>100 | Split file to stay <= 100 lines. |
| 1337 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/AttestationLinkResolver.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 565 | FileLength>100 | Split file to stay <= 100 lines. |
| 1338 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/DependencyInjectionRoutine.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 62 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1339 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/IAttestationLinkResolver.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 195 | FileLength>100 | Split file to stay <= 100 lines. |
| 1340 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/InMemoryAttestationLinkStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 170 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1341 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/InMemoryAttestationNodeProvider.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 106 | FileLength>100 | Split file to stay <= 100 lines. |
| 1342 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Chain/InTotoStatementMaterials.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 194 | FileLength>100 | Split file to stay <= 100 lines. |
| 1343 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Configuration/RekorVerificationOptions.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 172 | FileLength>100 | Split file to stay <= 100 lines. |
| 1344 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Delta/DeltaAttestationService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 324 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1345 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Delta/IDeltaAttestationService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 185 | FileLength>100 | Split file to stay <= 100 lines. |
| 1346 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/ArtifactDigests.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 165 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1347 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/IInTotoLinkEmitter.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 74 | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
| 1348 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/IInTotoLinkSigningService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 159 | FileLength>100 | Split file to stay <= 100 lines. |
| 1349 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/ILinkRecorder.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 61 | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
| 1350 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/InTotoLink.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 170 | FileLength>100 | Split file to stay <= 100 lines. |
| 1351 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/InTotoLinkPredicate.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 243 | FileLength>100 | Split file to stay <= 100 lines. |
| 1352 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/LinkBuilder.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 294 | FileLength>100 | Split file to stay <= 100 lines. |
| 1353 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/LinkRecorder.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 302 | FileLength>100 | Split file to stay <= 100 lines. |
| 1354 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/MaterialSpec.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 129 | FileLength>100 | Split file to stay <= 100 lines. |
| 1355 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/Layout/ILayoutVerifier.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 271 | FileLength>100 | Split file to stay <= 100 lines. |
| 1356 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/Layout/InTotoLayout.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 267 | FileLength>100 | Split file to stay <= 100 lines. |
| 1357 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/InToto/Layout/LayoutVerifier.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 410 | FileLength>100 | Split file to stay <= 100 lines. |
| 1358 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Layers/ILayerAttestationService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 129 | FileLength>100 | Split file to stay <= 100 lines. |
| 1359 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Layers/LayerAttestation.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 284 | FileLength>100 | Split file to stay <= 100 lines. |
| 1360 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Layers/LayerAttestationService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 447 | FileLength>100 | Split file to stay <= 100 lines. |
| 1361 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Observability/AttestorActivitySource.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 60 | | |
| 1362 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Observability/AttestorMetrics.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 181 | FileLength>100 | Split file to stay <= 100 lines. |
| 1363 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Observability/AttestorTelemetryTags.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 11 | | |
| 1364 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Offline/AttestorOfflineBundle.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 76 | | |
| 1365 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Offline/IAttestorBundleService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 12 | | |
| 1366 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Options/AttestorOptions.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 432 | FileLength>100 | Split file to stay <= 100 lines. |
| 1367 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Options/RekorQueueOptions.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 65 | | |
| 1368 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Options/RekorVerificationOptions.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 200 | FileLength>100 | Split file to stay <= 100 lines. |
| 1369 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Queue/IRekorSubmissionQueue.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 115 | FileLength>100 | Split file to stay <= 100 lines. |
| 1370 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Queue/QueueDepthSnapshot.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 41 | | |
| 1371 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Queue/RekorQueueItem.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 57 | | |
| 1372 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Queue/RekorSubmissionStatus.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 40 | | |
| 1373 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/CheckpointDivergenceAlertPublisher.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 295 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1374 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/CheckpointDivergenceDetector.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 472 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1375 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/FileSystemRekorTileCache.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 354 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1376 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/ICheckpointDivergenceDetector.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 375 | FileLength>100 | Split file to stay <= 100 lines. |
| 1377 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/IRekorBackendResolver.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 50 | | |
| 1378 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/IRekorCheckpointStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 134 | FileLength>100 | Split file to stay <= 100 lines. |
| 1379 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/IRekorClient.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 34 | | |
| 1380 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/IRekorTileCache.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 174 | FileLength>100 | Split file to stay <= 100 lines. |
| 1381 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/IRekorTileClient.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 209 | FileLength>100 | Split file to stay <= 100 lines. |
| 1382 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/RekorBackend.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 80 | | |
| 1383 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/RekorEntryEvent.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 334 | FileLength>100 | Split file to stay <= 100 lines. |
| 1384 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/RekorInclusionVerificationResult.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 74 | | |
| 1385 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/RekorProofResponse.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 46 | | |
| 1386 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/RekorReceipt.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 430 | FileLength>100 | Split file to stay <= 100 lines. |
| 1387 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/RekorSubmissionResponse.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 38 | | |
| 1388 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Rekor/RekorSyncBackgroundService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 364 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1389 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Resilience/CircuitBreaker.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 369 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1390 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Resilience/CircuitBreakerOptions.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 77 | | |
| 1391 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Serialization/CanonicalJsonSerializer.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 219 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1392 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Signing/AttestationSignRequest.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 52 | | |
| 1393 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Signing/AttestationSignResult.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 26 | | |
| 1394 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Signing/AttestorSigningException.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 21 | | |
| 1395 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Signing/DssePreAuthenticationEncoding.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 44 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1396 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Signing/DsseSigningService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 292 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1397 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Signing/DsseVerificationReportSigner.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 85 | | |
| 1398 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Signing/FileKeyProvider.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 184 | FileLength>100 | Split file to stay <= 100 lines. |
| 1399 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Signing/IAttestationSigningService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 15 | | |
| 1400 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Signing/IVerificationReportSigner.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 28 | | |
| 1401 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Storage/AttestorArchiveBundle.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 20 | | |
| 1402 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Storage/AttestorEntry.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 143 | FileLength>100 | Split file to stay <= 100 lines. |
| 1403 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Storage/AttestorEntryContinuationToken.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 84 | | |
| 1404 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Storage/AttestorEntryQuery.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 37 | | |
| 1405 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Storage/IAttestorArchiveStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 12 | | |
| 1406 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Storage/IAttestorAuditSink.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 11 | | |
| 1407 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Storage/IAttestorDedupeStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 13 | | |
| 1408 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Storage/IAttestorEntryRepository.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 19 | | |
| 1409 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Submission/AttestorSubmissionRequest.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 80 | | |
| 1410 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Submission/AttestorSubmissionResult.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 117 | FileLength>100 | Split file to stay <= 100 lines. |
| 1411 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Submission/AttestorSubmissionValidationResult.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 12 | | |
| 1412 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Submission/AttestorSubmissionValidator.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 234 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1413 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Submission/AttestorValidationException.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 15 | | |
| 1414 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Submission/IAttestorSubmissionService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 13 | | |
| 1415 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Submission/IDsseCanonicalizer.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 10 | | |
| 1416 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Submission/SubmissionContext.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 22 | | |
| 1417 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Transparency/ITransparencyWitnessClient.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 10 | | |
| 1418 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Transparency/TransparencyServiceExtensions.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 47 | | |
| 1419 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Transparency/TransparencyStatus.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 426 | FileLength>100 | Split file to stay <= 100 lines. |
| 1420 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Transparency/TransparencyStatusProvider.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 349 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1421 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Transparency/TransparencyWitnessObservation.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 23 | | |
| 1422 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Transparency/TransparencyWitnessRequest.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 10 | | |
| 1423 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Validation/PredicateSchemaValidator.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 193 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1424 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/AttestorVerificationException.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 15 | | |
| 1425 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/AttestorVerificationRequest.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 28 | | |
| 1426 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/AttestorVerificationResult.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 24 | | |
| 1427 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/CheckpointSignatureVerifier.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 568 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1428 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/IAttestorVerificationCache.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 14 | | |
| 1429 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/IAttestorVerificationService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 14 | | |
| 1430 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/InstrumentedTimeSkewValidator.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 103 | FileLength>100 | Split file to stay <= 100 lines. |
| 1431 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/IRekorVerificationService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 417 | FileLength>100 | Split file to stay <= 100 lines. |
| 1432 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/MerkleProofVerifier.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 160 | FileLength>100 | Split file to stay <= 100 lines. |
| 1433 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/RekorOfflineReceiptVerifier.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 219 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1434 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/RekorVerificationHealthCheck.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 369 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1435 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/RekorVerificationJob.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 382 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1436 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/RekorVerificationMetrics.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 211 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1437 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/RekorVerificationService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 488 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1438 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/TimeSkewValidationException.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 36 | | |
| 1439 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/TimeSkewValidator.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 225 | FileLength>100 | Split file to stay <= 100 lines. |
| 1440 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/VerificationReport.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | FAIL | 186 | FileLength>100 | Split file to stay <= 100 lines. |
| 1441 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/Verification/VerificationSectionStatus.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Core/StellaOps.Attestor.Core.csproj | Attestor | PASS | 13 | | |
| 1442 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/ServiceCollectionExtensions.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 210 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 1443 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Bulk/BulkVerificationWorker.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 242 | AsyncNaming; BlockingAsync; FileLength>100 | Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1444 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Bulk/InMemoryBulkVerificationJobStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | PASS | 71 | | |
| 1445 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/InToto/InTotoLinkSigningService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 177 | FileLength>100 | Split file to stay <= 100 lines. |
| 1446 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Offline/AttestorBundleService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 271 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1447 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Properties/AssemblyInfo.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | PASS | 5 | | |
| 1448 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Queue/PostgresRekorSubmissionQueue.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 539 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 1449 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Rekor/HttpRekorClient.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 390 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1450 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Rekor/HttpRekorTileClient.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 471 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1451 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Rekor/RekorBackendResolver.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | PASS | 91 | | |
| 1452 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Rekor/ResilientRekorClient.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 364 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1453 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Rekor/ServiceMapAwareRekorBackendResolver.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 286 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; ServiceLocator | Add ConfigureAwait(false) to awaited calls in library-like code.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1454 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Rekor/StubRekorClient.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 112 | FileLength>100 | Split file to stay <= 100 lines. |
| 1455 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Signing/AttestorSigningKeyRegistry.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 406 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1456 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Signing/AttestorSigningService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 262 | FileLength>100 | Split file to stay <= 100 lines. |
| 1457 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Storage/CachingAttestorDedupeStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 58 | AsyncNaming | Rename async methods to end with Async. |
| 1458 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Storage/InMemoryAttestorAuditSink.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | PASS | 24 | | |
| 1459 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Storage/InMemoryAttestorDedupeStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | PASS | 46 | | |
| 1460 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Storage/InMemoryAttestorEntryRepository.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 172 | FileLength>100 | Split file to stay <= 100 lines. |
| 1461 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Storage/NullAttestorArchiveStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | PASS | 30 | | |
| 1462 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Storage/RedisAttestorDedupeStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 36 | AsyncNaming | Rename async methods to end with Async. |
| 1463 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Storage/S3AttestorArchiveStore.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 185 | AsyncNaming; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1464 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Submission/AttestorSubmissionService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 788 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1465 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Submission/DefaultDsseCanonicalizer.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 56 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1466 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Transparency/HttpTransparencyWitnessClient.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 225 | AsyncNaming; BlockingAsync; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1467 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Transparency/NullTransparencyWitnessClient.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | PASS | 15 | | |
| 1468 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Verification/AttestorVerificationService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 383 | AsyncNaming; BlockingAsync; FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1469 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Verification/CachedAttestorVerificationService.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 98 | AsyncNaming | Rename async methods to end with Async. |
| 1470 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Verification/InMemoryAttestorVerificationCache.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 117 | FileLength>100 | Split file to stay <= 100 lines. |
| 1471 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Verification/MessagingAttestorVerificationCache.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 109 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1472 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Verification/NoOpAttestorVerificationCache.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | PASS | 19 | | |
| 1473 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Watchlist/PostgresWatchlistRepository.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 416 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1474 | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/Workers/RekorRetryWorker.cs | src/Attestor/StellaOps.Attestor/StellaOps.Attestor.Infrastructure/StellaOps.Attestor.Infrastructure.csproj | Attestor | FAIL | 257 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace; UsingNotSorted | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 1475 | src/Authority/__Libraries/StellaOps.Authority.Core/Verdicts/InMemoryVerdictManifestStore.cs | src/Authority/__Libraries/StellaOps.Authority.Core/StellaOps.Authority.Core.csproj | Authority | FAIL | 156 | FileLength>100 | Split file to stay <= 100 lines. |
| 1476 | src/Authority/__Libraries/StellaOps.Authority.Core/Verdicts/IVerdictManifestSigner.cs | src/Authority/__Libraries/StellaOps.Authority.Core/StellaOps.Authority.Core.csproj | Authority | PASS | 82 | | |
| 1477 | src/Authority/__Libraries/StellaOps.Authority.Core/Verdicts/IVerdictManifestStore.cs | src/Authority/__Libraries/StellaOps.Authority.Core/StellaOps.Authority.Core.csproj | Authority | FAIL | 103 | FileLength>100 | Split file to stay <= 100 lines. |
| 1478 | src/Authority/__Libraries/StellaOps.Authority.Core/Verdicts/VerdictManifest.cs | src/Authority/__Libraries/StellaOps.Authority.Core/StellaOps.Authority.Core.csproj | Authority | FAIL | 200 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1479 | src/Authority/__Libraries/StellaOps.Authority.Core/Verdicts/VerdictManifestBuilder.cs | src/Authority/__Libraries/StellaOps.Authority.Core/StellaOps.Authority.Core.csproj | Authority | FAIL | 228 | FileLength>100 | Split file to stay <= 100 lines. |
| 1480 | src/Authority/__Libraries/StellaOps.Authority.Core/Verdicts/VerdictReplayVerifier.cs | src/Authority/__Libraries/StellaOps.Authority.Core/StellaOps.Authority.Core.csproj | Authority | FAIL | 235 | AsyncNaming; BlockingAsync; FileLength>100 | Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1481 | src/Authority/__Libraries/StellaOps.Authority.Persistence/EfCore/Context/AuthorityDbContext.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 22 | | |
| 1482 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Extensions/AuthorityPersistenceExtensions.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 42 | | |
| 1483 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Documents/AuthorityDocuments.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 288 | FileLength>100 | Split file to stay <= 100 lines. |
| 1484 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Documents/TokenUsage.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 18 | | |
| 1485 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Driver/InMemoryDriverShim.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 154 | FileLength>100 | Split file to stay <= 100 lines. |
| 1486 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Extensions/ServiceCollectionExtensions.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 81 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1487 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Initialization/AuthorityStorageInitializer.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 18 | | |
| 1488 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Serialization/SerializationAttributes.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 61 | | |
| 1489 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Serialization/SerializationTypes.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 80 | | |
| 1490 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Sessions/IClientSessionHandle.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 29 | | |
| 1491 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Stores/AuthorityInMemoryIdGenerator.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 21 | | |
| 1492 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Stores/IAuthorityStores.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 111 | FileLength>100 | Split file to stay <= 100 lines. |
| 1493 | src/Authority/__Libraries/StellaOps.Authority.Persistence/InMemory/Stores/InMemoryStores.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 721 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1494 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/AuthorityDataSource.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 50 | | |
| 1495 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/ServiceCollectionExtensions.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 92 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1496 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/VerdictManifestStore.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 358 | AsyncNaming; BlockingAsync; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1497 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/AirgapAuditEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 26 | | |
| 1498 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/BootstrapInviteEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 23 | | |
| 1499 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/ClientEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 47 | | |
| 1500 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/LoginAttemptEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 30 | | |
| 1501 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/OfflineKitAuditEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 17 | | |
| 1502 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/OidcTokenEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 36 | | |
| 1503 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/RevocationEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 21 | | |
| 1504 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/RevocationExportStateEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 13 | | |
| 1505 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/RoleEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 54 | | |
| 1506 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/ServiceAccountEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 20 | | |
| 1507 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/SessionEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 40 | | |
| 1508 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/TenantEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 63 | | |
| 1509 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/TokenEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 75 | | |
| 1510 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Models/UserEntity.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 113 | FileLength>100 | Split file to stay <= 100 lines. |
| 1511 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/AirgapAuditRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 92 | AsyncNaming; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase. |
| 1512 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/ApiKeyRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 140 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1513 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/AuditRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 140 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1514 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/BootstrapInviteRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 196 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1515 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/ClientRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 164 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1516 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IAirgapAuditRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 10 | | |
| 1517 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IApiKeyRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 16 | | |
| 1518 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IAuditRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 14 | | |
| 1519 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IBootstrapInviteRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 14 | | |
| 1520 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IClientRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 11 | | |
| 1521 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/ILoginAttemptRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 10 | | |
| 1522 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IOfflineKitAuditEmitter.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 10 | | |
| 1523 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IOfflineKitAuditRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 18 | | |
| 1524 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IOidcTokenRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 26 | | |
| 1525 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IPermissionRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 18 | | |
| 1526 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IRevocationRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 11 | | |
| 1527 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IRoleRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 17 | | |
| 1528 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IServiceAccountRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 12 | | |
| 1529 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/ISessionRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 16 | | |
| 1530 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/ITenantRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 49 | | |
| 1531 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/ITokenRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 26 | | |
| 1532 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/IUserRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | PASS | 82 | | |
| 1533 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/LoginAttemptRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 97 | AsyncNaming; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase. |
| 1534 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/OfflineKitAuditEmitter.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 41 | AsyncNaming | Rename async methods to end with Async. |
| 1535 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/OfflineKitAuditRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 104 | AsyncNaming; BlockingAsync; FileLength>100 | Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1536 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/OidcTokenRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 412 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1537 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/PermissionRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 159 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1538 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/RevocationExportStateRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 72 | AsyncNaming | Rename async methods to end with Async. |
| 1539 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/RevocationRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 123 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1540 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/RoleRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 157 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1541 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/ServiceAccountRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 143 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1542 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/SessionRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 139 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1543 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/TenantRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 195 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1544 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/TokenRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 253 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1545 | src/Authority/__Libraries/StellaOps.Authority.Persistence/Postgres/Repositories/UserRepository.cs | src/Authority/__Libraries/StellaOps.Authority.Persistence/StellaOps.Authority.Persistence.csproj | Authority | FAIL | 379 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1546 | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/ITimeStampAuthorityClient.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/StellaOps.Authority.Timestamping.Abstractions.csproj | Authority | PASS | 65 | | |
| 1547 | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/TimeStampRequest.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/StellaOps.Authority.Timestamping.Abstractions.csproj | Authority | FAIL | 125 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1548 | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/TimeStampResponse.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/StellaOps.Authority.Timestamping.Abstractions.csproj | Authority | FAIL | 156 | FileLength>100 | Split file to stay <= 100 lines. |
| 1549 | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/TimeStampToken.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/StellaOps.Authority.Timestamping.Abstractions.csproj | Authority | FAIL | 165 | FileLength>100 | Split file to stay <= 100 lines. |
| 1550 | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/TimeStampVerificationOptions.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/StellaOps.Authority.Timestamping.Abstractions.csproj | Authority | PASS | 98 | | |
| 1551 | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/TimeStampVerificationResult.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/StellaOps.Authority.Timestamping.Abstractions.csproj | Authority | FAIL | 248 | FileLength>100 | Split file to stay <= 100 lines. |
| 1552 | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/TsaClientOptions.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping.Abstractions/StellaOps.Authority.Timestamping.Abstractions.csproj | Authority | FAIL | 143 | FileLength>100 | Split file to stay <= 100 lines. |
| 1553 | src/Authority/__Libraries/StellaOps.Authority.Timestamping/HttpTsaClient.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping/StellaOps.Authority.Timestamping.csproj | Authority | FAIL | 219 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1554 | src/Authority/__Libraries/StellaOps.Authority.Timestamping/ITsaProviderRegistry.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping/StellaOps.Authority.Timestamping.csproj | Authority | FAIL | 220 | FileLength>100 | Split file to stay <= 100 lines. |
| 1555 | src/Authority/__Libraries/StellaOps.Authority.Timestamping/TimestampingServiceCollectionExtensions.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping/StellaOps.Authority.Timestamping.csproj | Authority | FAIL | 108 | FileLength>100 | Split file to stay <= 100 lines. |
| 1556 | src/Authority/__Libraries/StellaOps.Authority.Timestamping/TimeStampTokenVerifier.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping/StellaOps.Authority.Timestamping.csproj | Authority | FAIL | 225 | FileLength>100 | Split file to stay <= 100 lines. |
| 1557 | src/Authority/__Libraries/StellaOps.Authority.Timestamping/TsaProviderRegistry.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping/StellaOps.Authority.Timestamping.csproj | Authority | FAIL | 264 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1558 | src/Authority/__Libraries/StellaOps.Authority.Timestamping/Asn1/TimeStampReqEncoder.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping/StellaOps.Authority.Timestamping.csproj | Authority | FAIL | 167 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1559 | src/Authority/__Libraries/StellaOps.Authority.Timestamping/Asn1/TimeStampRespDecoder.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping/StellaOps.Authority.Timestamping.csproj | Authority | FAIL | 364 | FileLength>100 | Split file to stay <= 100 lines. |
| 1560 | src/Authority/__Libraries/StellaOps.Authority.Timestamping/Caching/InMemoryTsaCacheStore.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping/StellaOps.Authority.Timestamping.csproj | Authority | FAIL | 122 | FileLength>100 | Split file to stay <= 100 lines. |
| 1561 | src/Authority/__Libraries/StellaOps.Authority.Timestamping/Caching/ITsaCacheStore.cs | src/Authority/__Libraries/StellaOps.Authority.Timestamping/StellaOps.Authority.Timestamping.csproj | Authority | PASS | 83 | | |
| 1562 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/AuthorityTelemetry.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | PASS | 57 | | |
| 1563 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/NetworkMask.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | FAIL | 182 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1564 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/NetworkMaskMatcher.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | FAIL | 140 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1565 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOpsAuthenticationDefaults.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | PASS | 23 | | |
| 1566 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOpsClaimTypes.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | FAIL | 153 | FileLength>100 | Split file to stay <= 100 lines. |
| 1567 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOpsHttpHeaderNames.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | PASS | 13 | | |
| 1568 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOpsPrincipalBuilder.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | FAIL | 288 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1569 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOpsProblemResultFactory.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | FAIL | 116 | FileLength>100 | Split file to stay <= 100 lines. |
| 1570 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOpsScopes.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | FAIL | 626 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1571 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOpsServiceIdentities.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | PASS | 28 | | |
| 1572 | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOpsTenancyDefaults.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.Abstractions/StellaOps.Auth.Abstractions.csproj | Authority | PASS | 13 | | |
| 1573 | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/ServiceCollectionExtensions.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOps.Auth.ServerIntegration.csproj | Authority | FAIL | 94 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1574 | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOpsAuthorityConfigurationManager.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOps.Auth.ServerIntegration.csproj | Authority | FAIL | 211 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1575 | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOpsAuthorizationPolicyBuilderExtensions.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOps.Auth.ServerIntegration.csproj | Authority | PASS | 58 | | |
| 1576 | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOpsBypassEvaluator.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOps.Auth.ServerIntegration.csproj | Authority | FAIL | 64 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1577 | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOpsResourceServerOptions.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOps.Auth.ServerIntegration.csproj | Authority | FAIL | 195 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1578 | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOpsResourceServerPolicies.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOps.Auth.ServerIntegration.csproj | Authority | FAIL | 122 | FileLength>100 | Split file to stay <= 100 lines. |
| 1579 | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOpsScopeAuthorizationHandler.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOps.Auth.ServerIntegration.csproj | Authority | FAIL | 1085 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1580 | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOpsScopeRequirement.cs | src/Authority/StellaOps.Authority/StellaOps.Auth.ServerIntegration/StellaOps.Auth.ServerIntegration.csproj | Authority | PASS | 49 | | |
| 1581 | src/Authority/StellaOps.Authority/StellaOps.Authority/AuthorityHttpHeaders.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 8 | | |
| 1582 | src/Authority/StellaOps.Authority/StellaOps.Authority/AuthorityIdentityProviderRegistry.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 159 | AsyncNaming; FileLength>100; PrivateFieldNaming; ServiceLocator; UsingInsideNamespace | Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1583 | src/Authority/StellaOps.Authority/StellaOps.Authority/AuthorityPluginRegistry.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 25 | | |
| 1584 | src/Authority/StellaOps.Authority/StellaOps.Authority/AuthorityRateLimiter.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 119 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; ServiceLocator | Add ConfigureAwait(false) to awaited calls in library-like code.; Remove service locator usage; use constructor injection.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1585 | src/Authority/StellaOps.Authority/StellaOps.Authority/AuthorityTelemetryConfiguration.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 62 | | |
| 1586 | src/Authority/StellaOps.Authority/StellaOps.Authority/LegacyAuthDeprecationMiddleware.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 256 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1587 | src/Authority/StellaOps.Authority/StellaOps.Authority/Program.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 3205 | FileLength>100; ServiceLocator; UsingNotSorted | Remove service locator usage; use constructor injection.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 1588 | src/Authority/StellaOps.Authority/StellaOps.Authority/Program.Partial.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 4 | NamespaceMissing | Add file-scoped namespace: namespace StellaOps.<Area>; |
| 1589 | src/Authority/StellaOps.Authority/StellaOps.Authority/ServiceAccountAdminContracts.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 32 | | |
| 1590 | src/Authority/StellaOps.Authority/StellaOps.Authority/AdvisoryAi/AdvisoryAiRemoteInferenceLogRequest.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 23 | | |
| 1591 | src/Authority/StellaOps.Authority/StellaOps.Authority/AdvisoryAi/AuthorityAdvisoryAiConsentEvaluator.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 153 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1592 | src/Authority/StellaOps.Authority/StellaOps.Authority/Airgap/AirgapAuditEndpointExtensions.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 323 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1593 | src/Authority/StellaOps.Authority/StellaOps.Authority/Airgap/AuthorityAirgapAuditService.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 148 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1594 | src/Authority/StellaOps.Authority/StellaOps.Authority/Airgap/AuthoritySealedModeEvidenceValidator.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 271 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1595 | src/Authority/StellaOps.Authority/StellaOps.Authority/Audit/AuthorityAuditSink.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 239 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1596 | src/Authority/StellaOps.Authority/StellaOps.Authority/Audit/AuthorityCredentialAuditContextAccessor.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 60 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1597 | src/Authority/StellaOps.Authority/StellaOps.Authority/Bootstrap/BootstrapApiKeyFilter.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 31 | AsyncNaming; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase. |
| 1598 | src/Authority/StellaOps.Authority/StellaOps.Authority/Bootstrap/BootstrapInviteCleanupService.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 108 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1599 | src/Authority/StellaOps.Authority/StellaOps.Authority/Bootstrap/BootstrapRequests.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 99 | | |
| 1600 | src/Authority/StellaOps.Authority/StellaOps.Authority/Console/ConsoleEndpointExtensions.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 942 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1601 | src/Authority/StellaOps.Authority/StellaOps.Authority/Console/ConsoleWorkspaceModels.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 485 | FileLength>100 | Split file to stay <= 100 lines. |
| 1602 | src/Authority/StellaOps.Authority/StellaOps.Authority/Console/ConsoleWorkspaceSampleService.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 625 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1603 | src/Authority/StellaOps.Authority/StellaOps.Authority/Console/TenantHeaderFilter.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 77 | | |
| 1604 | src/Authority/StellaOps.Authority/StellaOps.Authority/Console/Admin/ConsoleAdminEndpointExtensions.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 748 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1605 | src/Authority/StellaOps.Authority/StellaOps.Authority/Console/Admin/ConsoleBrandingEndpointExtensions.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 403 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1606 | src/Authority/StellaOps.Authority/StellaOps.Authority/LocalPolicy/BreakGlassSessionManager.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 553 | FileLength>100 | Split file to stay <= 100 lines. |
| 1607 | src/Authority/StellaOps.Authority/StellaOps.Authority/LocalPolicy/FileBasedPolicyStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 485 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1608 | src/Authority/StellaOps.Authority/StellaOps.Authority/LocalPolicy/ILocalPolicyStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 157 | FileLength>100 | Split file to stay <= 100 lines. |
| 1609 | src/Authority/StellaOps.Authority/StellaOps.Authority/LocalPolicy/LocalPolicyModels.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 320 | FileLength>100 | Split file to stay <= 100 lines. |
| 1610 | src/Authority/StellaOps.Authority/StellaOps.Authority/LocalPolicy/LocalPolicyStoreOptions.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 101 | FileLength>100 | Split file to stay <= 100 lines. |
| 1611 | src/Authority/StellaOps.Authority/StellaOps.Authority/LocalPolicy/PolicyStoreFallback.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 379 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1612 | src/Authority/StellaOps.Authority/StellaOps.Authority/Notifications/AuthorityWebhookAllowlistEvaluator.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 109 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1613 | src/Authority/StellaOps.Authority/StellaOps.Authority/Notifications/Ack/AckTokenModels.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 85 | | |
| 1614 | src/Authority/StellaOps.Authority/StellaOps.Authority/Notifications/Ack/AckTokenPayload.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 255 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1615 | src/Authority/StellaOps.Authority/StellaOps.Authority/Notifications/Ack/AckTokenSigningUtilities.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 44 | PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase. |
| 1616 | src/Authority/StellaOps.Authority/StellaOps.Authority/Notifications/Ack/AuthorityAckTokenIssuer.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 212 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1617 | src/Authority/StellaOps.Authority/StellaOps.Authority/Notifications/Ack/AuthorityAckTokenKeyManager.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 427 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1618 | src/Authority/StellaOps.Authority/StellaOps.Authority/Notifications/Ack/AuthorityAckTokenVerifier.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 145 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1619 | src/Authority/StellaOps.Authority/StellaOps.Authority/Observability/IncidentAuditEndpointExtensions.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 104 | FileLength>100 | Split file to stay <= 100 lines. |
| 1620 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenApi/AuthorityOpenApiDocumentProvider.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 321 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1621 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenApi/OpenApiDiscoveryEndpointExtensions.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 145 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1622 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/AuthorityIdentityProviderSelector.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 66 | | |
| 1623 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/AuthorityOpenIddictConstants.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 81 | | |
| 1624 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/AuthoritySenderConstraintHelper.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 104 | FileLength>100 | Split file to stay <= 100 lines. |
| 1625 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/AuthorityTokenKinds.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 7 | | |
| 1626 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/TokenRequestTamperInspector.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 129 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1627 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/Handlers/ClientCredentialsAuditHelper.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 271 | FileLength>100 | Split file to stay <= 100 lines. |
| 1628 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/Handlers/ClientCredentialsHandlers.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 2194 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1629 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/Handlers/DiscoveryHandlers.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 95 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1630 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/Handlers/DpopHandlers.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 764 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1631 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/Handlers/PasswordGrantHandlers.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 1785 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1632 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/Handlers/RefreshTokenHandlers.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 168 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1633 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/Handlers/RevocationHandlers.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 144 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1634 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/Handlers/TokenPersistenceHandlers.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 285 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1635 | src/Authority/StellaOps.Authority/StellaOps.Authority/OpenIddict/Handlers/TokenValidationHandlers.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 677 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1636 | src/Authority/StellaOps.Authority/StellaOps.Authority/Permalinks/VulnPermalinkRequest.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 12 | | |
| 1637 | src/Authority/StellaOps.Authority/StellaOps.Authority/Permalinks/VulnPermalinkResponse.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 12 | | |
| 1638 | src/Authority/StellaOps.Authority/StellaOps.Authority/Permalinks/VulnPermalinkService.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 195 | AsyncNaming; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1639 | src/Authority/StellaOps.Authority/StellaOps.Authority/Plugins/AuthorityPluginLoader.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 344 | FileLength>100; PrivateFieldNaming; ServiceLocator | Remove service locator usage; use constructor injection.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1640 | src/Authority/StellaOps.Authority/StellaOps.Authority/Plugins/AuthorityPluginRegistrationSummary.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 21 | | |
| 1641 | src/Authority/StellaOps.Authority/StellaOps.Authority/Properties/AssemblyInfo.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 4 | | |
| 1642 | src/Authority/StellaOps.Authority/StellaOps.Authority/RateLimiting/AuthorityRateLimiterFeature.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 27 | | |
| 1643 | src/Authority/StellaOps.Authority/StellaOps.Authority/RateLimiting/AuthorityRateLimiterMetadata.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 82 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1644 | src/Authority/StellaOps.Authority/StellaOps.Authority/RateLimiting/AuthorityRateLimiterMetadataAccessor.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 131 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1645 | src/Authority/StellaOps.Authority/StellaOps.Authority/RateLimiting/AuthorityRateLimiterMetadataMiddleware.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 298 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1646 | src/Authority/StellaOps.Authority/StellaOps.Authority/RateLimiting/AuthorityRateLimiterPartitionKeyResolver.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 66 | | |
| 1647 | src/Authority/StellaOps.Authority/StellaOps.Authority/RateLimiting/AuthorityRateLimitingApplicationBuilderExtensions.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 15 | | |
| 1648 | src/Authority/StellaOps.Authority/StellaOps.Authority/Revocation/AuthorityRevocationExportService.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 39 | AsyncNaming; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase. |
| 1649 | src/Authority/StellaOps.Authority/StellaOps.Authority/Revocation/RevocationBundleBuilder.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 222 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1650 | src/Authority/StellaOps.Authority/StellaOps.Authority/Revocation/RevocationBundleBuildResult.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 11 | | |
| 1651 | src/Authority/StellaOps.Authority/StellaOps.Authority/Revocation/RevocationBundleModel.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 54 | | |
| 1652 | src/Authority/StellaOps.Authority/StellaOps.Authority/Revocation/RevocationBundleSignature.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 4 | | |
| 1653 | src/Authority/StellaOps.Authority/StellaOps.Authority/Revocation/RevocationBundleSigner.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 124 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1654 | src/Authority/StellaOps.Authority/StellaOps.Authority/Revocation/RevocationEntryModel.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 71 | | |
| 1655 | src/Authority/StellaOps.Authority/StellaOps.Authority/Revocation/RevocationExportPackage.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 6 | | |
| 1656 | src/Authority/StellaOps.Authority/StellaOps.Authority/Revocation/RevocationExportResponse.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 74 | | |
| 1657 | src/Authority/StellaOps.Authority/StellaOps.Authority/Security/AuthorityClientCertificateValidationResult.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 34 | | |
| 1658 | src/Authority/StellaOps.Authority/StellaOps.Authority/Security/AuthorityClientCertificateValidator.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 321 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1659 | src/Authority/StellaOps.Authority/StellaOps.Authority/Security/AuthoritySecretHasherInitializer.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 42 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1660 | src/Authority/StellaOps.Authority/StellaOps.Authority/Security/AuthoritySenderConstraintKinds.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 11 | | |
| 1661 | src/Authority/StellaOps.Authority/StellaOps.Authority/Security/IAuthorityClientCertificateValidator.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 13 | | |
| 1662 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/AuthorityDsseStatementSigner.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 118 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1663 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/AuthorityJwksService.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 185 | BlockingAsync; FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1664 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/AuthoritySignerAdapter.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 34 | AsyncNaming; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase. |
| 1665 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/AuthoritySigningKeyManager.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 429 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1666 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/AuthoritySigningKeyRequest.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 58 | | |
| 1667 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/AuthoritySigningKeyStatus.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 9 | | |
| 1668 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/FileAuthoritySigningKeySource.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 142 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1669 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/IAuthoritySigningKeySource.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 11 | | |
| 1670 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/KmsAuthoritySigningKeySource.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 119 | BlockingAsync; FileLength>100 | Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1671 | src/Authority/StellaOps.Authority/StellaOps.Authority/Signing/SigningRotationRequest.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 19 | | |
| 1672 | src/Authority/StellaOps.Authority/StellaOps.Authority/Storage/AuthorityIdGenerator.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 12 | | |
| 1673 | src/Authority/StellaOps.Authority/StellaOps.Authority/Storage/Postgres/PostgresAirgapAuditStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 148 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1674 | src/Authority/StellaOps.Authority/StellaOps.Authority/Storage/Postgres/PostgresBootstrapInviteStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 122 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1675 | src/Authority/StellaOps.Authority/StellaOps.Authority/Storage/Postgres/PostgresClientStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 126 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1676 | src/Authority/StellaOps.Authority/StellaOps.Authority/Storage/Postgres/PostgresLoginAttemptStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 138 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1677 | src/Authority/StellaOps.Authority/StellaOps.Authority/Storage/Postgres/PostgresRevocationExportStateStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 44 | AsyncNaming; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase. |
| 1678 | src/Authority/StellaOps.Authority/StellaOps.Authority/Storage/Postgres/PostgresRevocationStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 75 | AsyncNaming; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase. |
| 1679 | src/Authority/StellaOps.Authority/StellaOps.Authority/Storage/Postgres/PostgresServiceAccountStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 89 | AsyncNaming; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase. |
| 1680 | src/Authority/StellaOps.Authority/StellaOps.Authority/Storage/Postgres/PostgresTokenStore.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 541 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1681 | src/Authority/StellaOps.Authority/StellaOps.Authority/Tenants/AuthorityTenantCatalog.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 44 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1682 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/VulnTokenSigner.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 83 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 1683 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/VulnTokenUtilities.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 112 | FileLength>100 | Split file to stay <= 100 lines. |
| 1684 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/VulnTokenVerificationUtilities.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 117 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1685 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/Attachments/VulnAttachmentTokenIssuer.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 145 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1686 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/Attachments/VulnAttachmentTokenModels.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 61 | | |
| 1687 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/Attachments/VulnAttachmentTokenPayload.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 22 | | |
| 1688 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/Attachments/VulnAttachmentTokenVerifier.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 117 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1689 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/Workflow/VulnWorkflowAntiForgeryModels.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 56 | | |
| 1690 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/Workflow/VulnWorkflowAntiForgeryPayload.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | PASS | 28 | | |
| 1691 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/Workflow/VulnWorkflowAntiForgeryTokenIssuer.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 236 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1692 | src/Authority/StellaOps.Authority/StellaOps.Authority/Vulnerability/Workflow/VulnWorkflowAntiForgeryTokenVerifier.cs | src/Authority/StellaOps.Authority/StellaOps.Authority/StellaOps.Authority.csproj | Authority | FAIL | 124 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1693 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/BenchmarkConfig.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | FAIL | 105 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1694 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/NodeBenchMetrics.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | FAIL | 269 | FileLength>100; PrivateFieldNaming; UsingNotSorted | Rename private fields to _camelCase.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 1695 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/Program.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | FAIL | 397 | AsyncNaming; FileLength>100; UsingInsideNamespace; UsingNotSorted | Move using directives outside namespace.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 1696 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/ScenarioResult.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | PASS | 27 | | |
| 1697 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/ScenarioRunners.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | FAIL | 298 | AsyncNaming; FileLength>100; UsingInsideNamespace; UsingNotSorted | Move using directives outside namespace.; Rename async methods to end with Async.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 1698 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/Baseline/BaselineEntry.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | PASS | 10 | | |
| 1699 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/Baseline/BaselineLoader.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | FAIL | 89 | AsyncNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename async methods to end with Async. |
| 1700 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/Reporting/BenchmarkJsonWriter.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | FAIL | 111 | BlockingAsync; FileLength>100; PrivateFieldNaming; UsingNotSorted | Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Sort using directives alphabetically.; Split file to stay <= 100 lines. |
| 1701 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/Reporting/BenchmarkScenarioReport.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | FAIL | 63 | UsingNotSorted | Sort using directives alphabetically. |
| 1702 | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/Reporting/PrometheusWriter.cs | src/Bench/StellaOps.Bench/Scanner.Analyzers/StellaOps.Bench.ScannerAnalyzers/StellaOps.Bench.ScannerAnalyzers.csproj | Bench | FAIL | 79 | BlockingAsync | Replace .Result/.Wait/GetAwaiter().GetResult() with await. |
| 1703 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/GoldenSetAnalysisPipeline.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 370 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1704 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/Implementations.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 280 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1705 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/Interfaces.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 409 | FileLength>100 | Split file to stay <= 100 lines. |
| 1706 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/ReachGraphBinaryReachabilityService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 293 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1707 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 108 | FileLength>100 | Split file to stay <= 100 lines. |
| 1708 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/SignatureMatcher.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 361 | FileLength>100 | Split file to stay <= 100 lines. |
| 1709 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/TaintGateExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 185 | FileLength>100 | Split file to stay <= 100 lines. |
| 1710 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/Models/AnalysisResultModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 350 | FileLength>100 | Split file to stay <= 100 lines. |
| 1711 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/Models/FingerprintModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 286 | FileLength>100 | Split file to stay <= 100 lines. |
| 1712 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/Models/SignatureIndexModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Analysis/StellaOps.BinaryIndex.Analysis.csproj | BinaryIndex | FAIL | 250 | FileLength>100 | Split file to stay <= 100 lines. |
| 1713 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/BuilderOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 176 | FileLength>100 | Split file to stay <= 100 lines. |
| 1714 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/FingerprintClaimModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 305 | FileLength>100 | Split file to stay <= 100 lines. |
| 1715 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/GuidProvider.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | PASS | 18 | | |
| 1716 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/IFunctionFingerprintExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 229 | FileLength>100 | Split file to stay <= 100 lines. |
| 1717 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/IPatchDiffEngine.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 234 | FileLength>100 | Split file to stay <= 100 lines. |
| 1718 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/IReproducibleBuilder.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 429 | FileLength>100 | Split file to stay <= 100 lines. |
| 1719 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/PatchDiffEngine.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 489 | FileLength>100 | Split file to stay <= 100 lines. |
| 1720 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/ReproducibleBuildJobTypes.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 430 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1721 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | PASS | 69 | | |
| 1722 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/SymbolDiff/AbiCompatibility.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 208 | FileLength>100 | Split file to stay <= 100 lines. |
| 1723 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/SymbolDiff/DynamicLinkingDiff.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 245 | FileLength>100 | Split file to stay <= 100 lines. |
| 1724 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/SymbolDiff/ISymbolTableDiffAnalyzer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 163 | FileLength>100 | Split file to stay <= 100 lines. |
| 1725 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/SymbolDiff/NameDemangler.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 388 | FileLength>100 | Split file to stay <= 100 lines. |
| 1726 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/SymbolDiff/SymbolDiffServiceExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | PASS | 41 | | |
| 1727 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/SymbolDiff/SymbolTableDiff.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 316 | FileLength>100 | Split file to stay <= 100 lines. |
| 1728 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/SymbolDiff/SymbolTableDiffAnalyzer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 807 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1729 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/SymbolDiff/VersionMapDiff.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Builders/StellaOps.BinaryIndex.Builders.csproj | BinaryIndex | FAIL | 114 | FileLength>100 | Split file to stay <= 100 lines. |
| 1730 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/BinaryCacheOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/StellaOps.BinaryIndex.Cache.csproj | BinaryIndex | PASS | 64 | | |
| 1731 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/BinaryCacheServiceExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/StellaOps.BinaryIndex.Cache.csproj | BinaryIndex | FAIL | 107 | FileLength>100 | Split file to stay <= 100 lines. |
| 1732 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/CachedBinaryVulnerabilityService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/StellaOps.BinaryIndex.Cache.csproj | BinaryIndex | FAIL | 541 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1733 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/CacheOptionsValidation.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/StellaOps.BinaryIndex.Cache.csproj | BinaryIndex | FAIL | 102 | FileLength>100 | Split file to stay <= 100 lines. |
| 1734 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/FunctionIrCacheService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/StellaOps.BinaryIndex.Cache.csproj | BinaryIndex | FAIL | 318 | AsyncNaming; FileLength>100; PrivateFieldNaming | Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1735 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/RandomSource.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/StellaOps.BinaryIndex.Cache.csproj | BinaryIndex | PASS | 24 | | |
| 1736 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/ResolutionCacheService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Cache/StellaOps.BinaryIndex.Cache.csproj | BinaryIndex | FAIL | 330 | AsyncNaming; FileLength>100 | Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1737 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Contracts/Resolution/VulnResolutionContracts.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Contracts/StellaOps.BinaryIndex.Contracts.csproj | BinaryIndex | FAIL | 249 | FileLength>100 | Split file to stay <= 100 lines. |
| 1738 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Configuration/BinaryIndexOpsModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | FAIL | 495 | FileLength>100 | Split file to stay <= 100 lines. |
| 1739 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Configuration/BinaryIndexOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | FAIL | 277 | FileLength>100 | Split file to stay <= 100 lines. |
| 1740 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Models/BinaryIdentity.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | PASS | 64 | | |
| 1741 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Models/FixModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | PASS | 41 | | |
| 1742 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Resolution/ResolutionService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | FAIL | 465 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1743 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Services/BinaryIdentityService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | FAIL | 77 | ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code. |
| 1744 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Services/ElfFeatureExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | FAIL | 212 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1745 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Services/IBinaryFeatureExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | PASS | 47 | | |
| 1746 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Services/IBinaryVulnAssertionRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | PASS | 22 | | |
| 1747 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Services/IBinaryVulnerabilityService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | FAIL | 388 | FileLength>100 | Split file to stay <= 100 lines. |
| 1748 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Services/ITenantContext.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | PASS | 13 | | |
| 1749 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Services/MachoFeatureExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | FAIL | 307 | AsyncNaming; ConfigureAwaitMissing; ConstNaming; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename consts to PascalCase.; Split file to stay <= 100 lines. |
| 1750 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Services/PeFeatureExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | FAIL | 283 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1751 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/Services/StreamGuard.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Core/StellaOps.BinaryIndex.Core.csproj | BinaryIndex | PASS | 19 | | |
| 1752 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Alpine/AlpineCorpusConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Alpine/StellaOps.BinaryIndex.Corpus.Alpine.csproj | BinaryIndex | FAIL | 164 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1753 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Alpine/AlpinePackageExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Alpine/StellaOps.BinaryIndex.Corpus.Alpine.csproj | BinaryIndex | FAIL | 229 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1754 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Alpine/ApkBuildSecfixesExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Alpine/StellaOps.BinaryIndex.Corpus.Alpine.csproj | BinaryIndex | FAIL | 112 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1755 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Alpine/IAlpinePackageSource.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Alpine/StellaOps.BinaryIndex.Corpus.Alpine.csproj | BinaryIndex | PASS | 89 | | |
| 1756 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Debian/DebianCorpusConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Debian/StellaOps.BinaryIndex.Corpus.Debian.csproj | BinaryIndex | FAIL | 180 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1757 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Debian/DebianMirrorPackageSource.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Debian/StellaOps.BinaryIndex.Corpus.Debian.csproj | BinaryIndex | FAIL | 277 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1758 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Debian/DebianPackageExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Debian/StellaOps.BinaryIndex.Corpus.Debian.csproj | BinaryIndex | FAIL | 225 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1759 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Debian/IDebianPackageSource.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Debian/StellaOps.BinaryIndex.Corpus.Debian.csproj | BinaryIndex | PASS | 37 | | |
| 1760 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Rpm/IRpmPackageSource.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Rpm/StellaOps.BinaryIndex.Corpus.Rpm.csproj | BinaryIndex | PASS | 95 | | |
| 1761 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Rpm/RpmCorpusConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Rpm/StellaOps.BinaryIndex.Corpus.Rpm.csproj | BinaryIndex | FAIL | 177 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1762 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Rpm/RpmPackageExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Rpm/StellaOps.BinaryIndex.Corpus.Rpm.csproj | BinaryIndex | FAIL | 384 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1763 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Rpm/SrpmChangelogExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus.Rpm/StellaOps.BinaryIndex.Corpus.Rpm.csproj | BinaryIndex | FAIL | 134 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1764 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/GuidProvider.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | PASS | 12 | | |
| 1765 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/IBinaryCorpusConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 192 | FileLength>100 | Split file to stay <= 100 lines. |
| 1766 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/ICorpusIngestionService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 137 | FileLength>100 | Split file to stay <= 100 lines. |
| 1767 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/ICorpusQueryService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 188 | FileLength>100 | Split file to stay <= 100 lines. |
| 1768 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/ICorpusRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 329 | FileLength>100 | Split file to stay <= 100 lines. |
| 1769 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/ICorpusSnapshotRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | PASS | 27 | | |
| 1770 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/ILibraryCorpusConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 157 | FileLength>100 | Split file to stay <= 100 lines. |
| 1771 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Connectors/CurlCorpusConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 449 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1772 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Connectors/GlibcCorpusConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 551 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1773 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Connectors/OpenSslCorpusConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 556 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1774 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Connectors/ZlibCorpusConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 454 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1775 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Models/FunctionCorpusModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 274 | FileLength>100 | Split file to stay <= 100 lines. |
| 1776 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Services/BatchFingerprintPipeline.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 466 | BlockingAsync; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1777 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Services/CorpusIngestionService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 468 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1778 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Services/CorpusQueryService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 421 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1779 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Services/CveFunctionMappingUpdater.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 425 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1780 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/Services/FunctionClusteringService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Corpus/StellaOps.BinaryIndex.Corpus.csproj | BinaryIndex | FAIL | 533 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1781 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/AstComparisonEngine.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/StellaOps.BinaryIndex.Decompiler.csproj | BinaryIndex | FAIL | 393 | FileLength>100 | Split file to stay <= 100 lines. |
| 1782 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/CodeNormalizer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/StellaOps.BinaryIndex.Decompiler.csproj | BinaryIndex | FAIL | 535 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1783 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/DecompiledCodeParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/StellaOps.BinaryIndex.Decompiler.csproj | BinaryIndex | FAIL | 951 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1784 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/DecompilerServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/StellaOps.BinaryIndex.Decompiler.csproj | BinaryIndex | PASS | 54 | | |
| 1785 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/GhidraDecompilerAdapter.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/StellaOps.BinaryIndex.Decompiler.csproj | BinaryIndex | FAIL | 293 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1786 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/IDecompilerService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/StellaOps.BinaryIndex.Decompiler.csproj | BinaryIndex | FAIL | 159 | FileLength>100 | Split file to stay <= 100 lines. |
| 1787 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/Models.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Decompiler/StellaOps.BinaryIndex.Decompiler.csproj | BinaryIndex | FAIL | 378 | FileLength>100 | Split file to stay <= 100 lines. |
| 1788 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/CfgExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 504 | FileLength>100 | Split file to stay <= 100 lines. |
| 1789 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/DeltaSignatureGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 489 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1790 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/DeltaSignatureMatcher.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 438 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1791 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/DeltaSigService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 618 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1792 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/DeltaSigServiceV2.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 421 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1793 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/DeltaSigV2ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | PASS | 72 | | |
| 1794 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/IDeltaSignatureGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | PASS | 74 | | |
| 1795 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/IDeltaSignatureMatcher.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | PASS | 51 | | |
| 1796 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/IDeltaSigService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 445 | FileLength>100 | Split file to stay <= 100 lines. |
| 1797 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/ISymbolChangeTracer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | PASS | 31 | | |
| 1798 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/Models.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 464 | FileLength>100 | Split file to stay <= 100 lines. |
| 1799 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 108 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 1800 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/SymbolChangeTracer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 238 | FileLength>100 | Split file to stay <= 100 lines. |
| 1801 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/Attestation/DeltaSigAttestorIntegration.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 487 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1802 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/Attestation/DeltaSigPredicate.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 492 | FileLength>100 | Split file to stay <= 100 lines. |
| 1803 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/Attestation/DeltaSigPredicateConverter.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 252 | FileLength>100 | Split file to stay <= 100 lines. |
| 1804 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/Attestation/DeltaSigPredicateV2.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 549 | FileLength>100 | Split file to stay <= 100 lines. |
| 1805 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/IrDiff/IIrDiffGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 278 | FileLength>100 | Split file to stay <= 100 lines. |
| 1806 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/IrDiff/IrDiffGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 224 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1807 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/Policy/DeltaScopePolicyGate.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 430 | FileLength>100 | Split file to stay <= 100 lines. |
| 1808 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/Provenance/GroundTruthProvenanceResolver.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 284 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1809 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/Provenance/ISymbolProvenanceResolver.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 146 | FileLength>100 | Split file to stay <= 100 lines. |
| 1810 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/VexIntegration/DeltaSigVexBridge.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.DeltaSig/StellaOps.BinaryIndex.DeltaSig.csproj | BinaryIndex | FAIL | 347 | FileLength>100 | Split file to stay <= 100 lines. |
| 1811 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/FunctionDiffer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 332 | FileLength>100 | Split file to stay <= 100 lines. |
| 1812 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/FunctionRenameDetector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 168 | FileLength>100 | Split file to stay <= 100 lines. |
| 1813 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/Interfaces.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 162 | FileLength>100 | Split file to stay <= 100 lines. |
| 1814 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/PatchDiffEngine.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 286 | FileLength>100 | Split file to stay <= 100 lines. |
| 1815 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | PASS | 29 | | |
| 1816 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/VerdictCalculator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 170 | FileLength>100 | Split file to stay <= 100 lines. |
| 1817 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/Models/BinaryReference.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 48 | AsyncNaming | Rename async methods to end with Async. |
| 1818 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/Models/DiffEvidenceModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 336 | FileLength>100 | Split file to stay <= 100 lines. |
| 1819 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/Models/PatchDiffModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 377 | FileLength>100 | Split file to stay <= 100 lines. |
| 1820 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/Storage/IDiffResultStore.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 219 | FileLength>100 | Split file to stay <= 100 lines. |
| 1821 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/Storage/InMemoryDiffResultStore.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Diff/StellaOps.BinaryIndex.Diff.csproj | BinaryIndex | FAIL | 246 | BlockingAsync; FileLength>100 | Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1822 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.Abstractions/IDisassemblyPlugin.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.Abstractions/StellaOps.BinaryIndex.Disassembly.Abstractions.csproj | BinaryIndex | FAIL | 141 | FileLength>100 | Split file to stay <= 100 lines. |
| 1823 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.Abstractions/Models.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.Abstractions/StellaOps.BinaryIndex.Disassembly.Abstractions.csproj | BinaryIndex | FAIL | 349 | FileLength>100 | Split file to stay <= 100 lines. |
| 1824 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.B2R2/B2R2DisassemblyPlugin.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.B2R2/StellaOps.BinaryIndex.Disassembly.B2R2.csproj | BinaryIndex | FAIL | 688 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1825 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.B2R2/B2R2LifterPool.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.B2R2/StellaOps.BinaryIndex.Disassembly.B2R2.csproj | BinaryIndex | FAIL | 386 | FileLength>100 | Split file to stay <= 100 lines. |
| 1826 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.B2R2/B2R2LowUirLiftingService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.B2R2/StellaOps.BinaryIndex.Disassembly.B2R2.csproj | BinaryIndex | FAIL | 699 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1827 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.B2R2/B2R2ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.B2R2/StellaOps.BinaryIndex.Disassembly.B2R2.csproj | BinaryIndex | PASS | 94 | | |
| 1828 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.Iced/IcedDisassemblyPlugin.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.Iced/StellaOps.BinaryIndex.Disassembly.Iced.csproj | BinaryIndex | FAIL | 598 | FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1829 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.Iced/IcedServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly.Iced/StellaOps.BinaryIndex.Disassembly.Iced.csproj | BinaryIndex | PASS | 29 | | |
| 1830 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly/DisassemblyPluginRegistry.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly/StellaOps.BinaryIndex.Disassembly.csproj | BinaryIndex | PASS | 79 | | |
| 1831 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly/DisassemblyService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly/StellaOps.BinaryIndex.Disassembly.csproj | BinaryIndex | FAIL | 222 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1832 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly/DisassemblyServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly/StellaOps.BinaryIndex.Disassembly.csproj | BinaryIndex | FAIL | 147 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 1833 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly/HybridDisassemblyService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Disassembly/StellaOps.BinaryIndex.Disassembly.csproj | BinaryIndex | FAIL | 574 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1834 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/EnsembleDecisionEngine.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/StellaOps.BinaryIndex.Ensemble.csproj | BinaryIndex | FAIL | 462 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1835 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/EnsembleServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/StellaOps.BinaryIndex.Ensemble.csproj | BinaryIndex | FAIL | 111 | FileLength>100 | Split file to stay <= 100 lines. |
| 1836 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/FunctionAnalysisBuilder.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/StellaOps.BinaryIndex.Ensemble.csproj | BinaryIndex | FAIL | 166 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1837 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/IEnsembleDecisionEngine.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/StellaOps.BinaryIndex.Ensemble.csproj | BinaryIndex | FAIL | 130 | FileLength>100 | Split file to stay <= 100 lines. |
| 1838 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/Models.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/StellaOps.BinaryIndex.Ensemble.csproj | BinaryIndex | FAIL | 448 | FileLength>100 | Split file to stay <= 100 lines. |
| 1839 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/WeightTuningService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ensemble/StellaOps.BinaryIndex.Ensemble.csproj | BinaryIndex | FAIL | 182 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1840 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/GuidProvider.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | PASS | 13 | | |
| 1841 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/IFingerprintRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | PASS | 69 | | |
| 1842 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Generators/BasicBlockFingerprintGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 466 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1843 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Generators/CombinedFingerprintGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 187 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1844 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Generators/ControlFlowGraphFingerprintGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 435 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1845 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Generators/IVulnFingerprintGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 115 | FileLength>100 | Split file to stay <= 100 lines. |
| 1846 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Generators/StringRefsFingerprintGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 284 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1847 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Matching/FingerprintMatcher.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 379 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1848 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Matching/IFingerprintMatcher.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 110 | FileLength>100 | Split file to stay <= 100 lines. |
| 1849 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Models/VulnFingerprint.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 184 | FileLength>100 | Split file to stay <= 100 lines. |
| 1850 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Pipeline/ReferenceBuildPipeline.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 428 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1851 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Storage/FingerprintBlobStorage.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | FAIL | 105 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1852 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/Storage/IFingerprintBlobStorage.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Fingerprints/StellaOps.BinaryIndex.Fingerprints.csproj | BinaryIndex | PASS | 51 | | |
| 1853 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Models/FixEvidence.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | PASS | 96 | | |
| 1854 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Parsers/AlpineSecfixesParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | FAIL | 111 | FileLength>100 | Split file to stay <= 100 lines. |
| 1855 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Parsers/DebianChangelogParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | PASS | 100 | | |
| 1856 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Parsers/FixIndexParserOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | PASS | 100 | | |
| 1857 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Parsers/IChangelogParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | PASS | 19 | | |
| 1858 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Parsers/IPatchParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | PASS | 20 | | |
| 1859 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Parsers/ISecfixesParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | PASS | 19 | | |
| 1860 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Parsers/PatchHeaderParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | PASS | 84 | | |
| 1861 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Parsers/RpmChangelogParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | FAIL | 246 | FileLength>100 | Split file to stay <= 100 lines. |
| 1862 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Repositories/IFixIndexRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | FAIL | 113 | FileLength>100 | Split file to stay <= 100 lines. |
| 1863 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Services/FixIndexBuilder.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | FAIL | 143 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1864 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/Services/IFixIndexBuilder.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.FixIndex/StellaOps.BinaryIndex.FixIndex.csproj | BinaryIndex | FAIL | 124 | FileLength>100 | Split file to stay <= 100 lines. |
| 1865 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Abstractions/IBSimService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 169 | FileLength>100 | Split file to stay <= 100 lines. |
| 1866 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Abstractions/IGhidraService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 145 | FileLength>100 | Split file to stay <= 100 lines. |
| 1867 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Abstractions/IGhidriffBridge.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 208 | FileLength>100 | Split file to stay <= 100 lines. |
| 1868 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Abstractions/IVersionTrackingService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 256 | FileLength>100 | Split file to stay <= 100 lines. |
| 1869 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Exceptions/GhidraExceptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 246 | FileLength>100 | Split file to stay <= 100 lines. |
| 1870 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Extensions/GhidraServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 115 | FileLength>100 | Split file to stay <= 100 lines. |
| 1871 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Models/GhidraModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 158 | FileLength>100 | Split file to stay <= 100 lines. |
| 1872 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Options/GhidraOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 189 | FileLength>100 | Split file to stay <= 100 lines. |
| 1873 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Services/BSimService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 287 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1874 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Services/GhidraDisassemblyPlugin.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 547 | BlockingAsync; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1875 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Services/GhidraHeadlessManager.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 452 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1876 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Services/GhidraService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 518 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1877 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Services/GhidriffBridge.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 709 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1878 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/Services/VersionTrackingService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Ghidra/StellaOps.BinaryIndex.Ghidra.csproj | BinaryIndex | FAIL | 439 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1879 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/GoldenSetEnrichmentService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 283 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1880 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/GoldenSetExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 423 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1881 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/GoldenSetReviewService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 325 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1882 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/IGoldenSetEnrichmentService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 236 | FileLength>100 | Split file to stay <= 100 lines. |
| 1883 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/IGoldenSetExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 267 | FileLength>100 | Split file to stay <= 100 lines. |
| 1884 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/IGoldenSetReviewService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 225 | FileLength>100 | Split file to stay <= 100 lines. |
| 1885 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/UpstreamCommitAnalyzer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 521 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1886 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/Extractors/CweToSinkMapper.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 175 | FileLength>100 | Split file to stay <= 100 lines. |
| 1887 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/Extractors/FunctionHintExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 182 | FileLength>100 | Split file to stay <= 100 lines. |
| 1888 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/Extractors/IGoldenSetSourceExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 198 | FileLength>100 | Split file to stay <= 100 lines. |
| 1889 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Authoring/Extractors/NvdGoldenSetExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 150 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1890 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Configuration/GoldenSetOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 125 | FileLength>100 | Split file to stay <= 100 lines. |
| 1891 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Extensions/GoldenSetServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 101 | FileLength>100 | Split file to stay <= 100 lines. |
| 1892 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Models/GoldenSetDefinition.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 262 | FileLength>100 | Split file to stay <= 100 lines. |
| 1893 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Serialization/GoldenSetYamlSerializer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 228 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1894 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Services/ISinkRegistry.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | PASS | 83 | | |
| 1895 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Services/SinkRegistry.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 216 | FileLength>100 | Split file to stay <= 100 lines. |
| 1896 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Storage/IGoldenSetStore.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 347 | FileLength>100 | Split file to stay <= 100 lines. |
| 1897 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Storage/PostgresGoldenSetStore.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 667 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1898 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Validation/GoldenSetValidator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 408 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1899 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Validation/ICveValidator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | PASS | 65 | | |
| 1900 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/Validation/IGoldenSetValidator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GoldenSet/StellaOps.BinaryIndex.GoldenSet.csproj | BinaryIndex | FAIL | 199 | FileLength>100 | Split file to stay <= 100 lines. |
| 1901 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/IKpiRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 606 | FileLength>100 | Split file to stay <= 100 lines. |
| 1902 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/ISecurityPairService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 291 | FileLength>100 | Split file to stay <= 100 lines. |
| 1903 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/ISymbolObservationRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 243 | FileLength>100 | Split file to stay <= 100 lines. |
| 1904 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/ISymbolObservationWriteGuard.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 129 | FileLength>100 | Split file to stay <= 100 lines. |
| 1905 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/ISymbolSourceConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 230 | FileLength>100 | Split file to stay <= 100 lines. |
| 1906 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/IValidationHarness.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 699 | FileLength>100 | Split file to stay <= 100 lines. |
| 1907 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/KpiComputation.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 257 | FileLength>100 | Split file to stay <= 100 lines. |
| 1908 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/SymbolObservation.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 411 | FileLength>100 | Split file to stay <= 100 lines. |
| 1909 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/SymbolObservationWriteGuard.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 265 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1910 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/SymbolSourceConnectorBase.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 156 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1911 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/SymbolSourceDefinitions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 315 | FileLength>100 | Split file to stay <= 100 lines. |
| 1912 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/Services/SecurityPairService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Abstractions/StellaOps.BinaryIndex.GroundTruth.Abstractions.csproj | BinaryIndex | FAIL | 176 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1913 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/BuildinfoConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/StellaOps.BinaryIndex.GroundTruth.Buildinfo.csproj | BinaryIndex | FAIL | 242 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1914 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/BuildinfoConnectorPlugin.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/StellaOps.BinaryIndex.GroundTruth.Buildinfo.csproj | BinaryIndex | FAIL | 29 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1915 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/BuildinfoServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/StellaOps.BinaryIndex.GroundTruth.Buildinfo.csproj | BinaryIndex | FAIL | 78 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1916 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/Configuration/BuildinfoOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/StellaOps.BinaryIndex.GroundTruth.Buildinfo.csproj | BinaryIndex | PASS | 96 | | |
| 1917 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/Internal/BuildinfoDiagnostics.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/StellaOps.BinaryIndex.GroundTruth.Buildinfo.csproj | BinaryIndex | PASS | 92 | | |
| 1918 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/Internal/BuildinfoParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Buildinfo/StellaOps.BinaryIndex.GroundTruth.Buildinfo.csproj | BinaryIndex | FAIL | 383 | FileLength>100 | Split file to stay <= 100 lines. |
| 1919 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/DdebConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/StellaOps.BinaryIndex.GroundTruth.Ddeb.csproj | BinaryIndex | FAIL | 583 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100; ServiceLocator; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1920 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/DdebConnectorPlugin.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/StellaOps.BinaryIndex.GroundTruth.Ddeb.csproj | BinaryIndex | FAIL | 42 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1921 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/DdebServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/StellaOps.BinaryIndex.GroundTruth.Ddeb.csproj | BinaryIndex | FAIL | 80 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1922 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/Configuration/DdebOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/StellaOps.BinaryIndex.GroundTruth.Ddeb.csproj | BinaryIndex | FAIL | 105 | FileLength>100 | Split file to stay <= 100 lines. |
| 1923 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/Internal/DdebCache.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/StellaOps.BinaryIndex.GroundTruth.Ddeb.csproj | BinaryIndex | FAIL | 205 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1924 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/Internal/DdebDiagnostics.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/StellaOps.BinaryIndex.GroundTruth.Ddeb.csproj | BinaryIndex | PASS | 91 | | |
| 1925 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/Internal/DebPackageExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/StellaOps.BinaryIndex.GroundTruth.Ddeb.csproj | BinaryIndex | FAIL | 255 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1926 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/Internal/IDebPackageExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/StellaOps.BinaryIndex.GroundTruth.Ddeb.csproj | BinaryIndex | FAIL | 105 | FileLength>100 | Split file to stay <= 100 lines. |
| 1927 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/Internal/PackagesIndexParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Ddeb/StellaOps.BinaryIndex.GroundTruth.Ddeb.csproj | BinaryIndex | FAIL | 162 | FileLength>100 | Split file to stay <= 100 lines. |
| 1928 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/DebuginfodConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/StellaOps.BinaryIndex.GroundTruth.Debuginfod.csproj | BinaryIndex | FAIL | 462 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100; ServiceLocator | Add ConfigureAwait(false) to awaited calls in library-like code.; Remove service locator usage; use constructor injection.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1929 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/DebuginfodConnectorPlugin.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/StellaOps.BinaryIndex.GroundTruth.Debuginfod.csproj | BinaryIndex | FAIL | 43 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1930 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/DebuginfodServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/StellaOps.BinaryIndex.GroundTruth.Debuginfod.csproj | BinaryIndex | FAIL | 109 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 1931 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/Configuration/DebuginfodOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/StellaOps.BinaryIndex.GroundTruth.Debuginfod.csproj | BinaryIndex | PASS | 100 | | |
| 1932 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/Internal/DebuginfodCache.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/StellaOps.BinaryIndex.GroundTruth.Debuginfod.csproj | BinaryIndex | FAIL | 314 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1933 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/Internal/DebuginfodDiagnostics.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/StellaOps.BinaryIndex.GroundTruth.Debuginfod.csproj | BinaryIndex | PASS | 91 | | |
| 1934 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/Internal/ElfDwarfParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/StellaOps.BinaryIndex.GroundTruth.Debuginfod.csproj | BinaryIndex | FAIL | 89 | UsingInsideNamespace | Move using directives outside namespace. |
| 1935 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/Internal/IDwarfParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/StellaOps.BinaryIndex.GroundTruth.Debuginfod.csproj | BinaryIndex | PASS | 81 | | |
| 1936 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/Internal/ImaVerificationService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Debuginfod/StellaOps.BinaryIndex.GroundTruth.Debuginfod.csproj | BinaryIndex | FAIL | 332 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1937 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/IMirrorService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/StellaOps.BinaryIndex.GroundTruth.Mirror.csproj | BinaryIndex | FAIL | 433 | FileLength>100 | Split file to stay <= 100 lines. |
| 1938 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/MirrorService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/StellaOps.BinaryIndex.GroundTruth.Mirror.csproj | BinaryIndex | FAIL | 683 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1939 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/Connectors/DebianSnapshotMirrorConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/StellaOps.BinaryIndex.GroundTruth.Mirror.csproj | BinaryIndex | FAIL | 431 | BlockingAsync; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 1940 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/Connectors/IMirrorConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/StellaOps.BinaryIndex.GroundTruth.Mirror.csproj | BinaryIndex | PASS | 59 | | |
| 1941 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/Connectors/OsvDumpMirrorConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/StellaOps.BinaryIndex.GroundTruth.Mirror.csproj | BinaryIndex | FAIL | 287 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1942 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/Models/MirrorManifest.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/StellaOps.BinaryIndex.GroundTruth.Mirror.csproj | BinaryIndex | FAIL | 390 | FileLength>100 | Split file to stay <= 100 lines. |
| 1943 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/Parsing/OsvDumpParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Mirror/StellaOps.BinaryIndex.GroundTruth.Mirror.csproj | BinaryIndex | FAIL | 1006 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1944 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/AirGapRebuildBundle.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 448 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1945 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/BundleExportService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 923 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1946 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/BundleImportService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 1335 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1947 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/DeterminismValidator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 441 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1948 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/IBundleExportService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 160 | FileLength>100 | Split file to stay <= 100 lines. |
| 1949 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/IBundleImportService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 136 | FileLength>100 | Split file to stay <= 100 lines. |
| 1950 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/IRebuildService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | PASS | 94 | | |
| 1951 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/LocalRebuildBackend.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 461 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1952 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/RebuildModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 459 | FileLength>100 | Split file to stay <= 100 lines. |
| 1953 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/RebuildService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 174 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1954 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/ReproduceDebianClient.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 334 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1955 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/SbomStabilityValidator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 501 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1956 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 166 | FileLength>100; ServiceLocator | Remove service locator usage; use constructor injection.; Split file to stay <= 100 lines. |
| 1957 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/SymbolExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 579 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1958 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/ValidationHarnessService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 573 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1959 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/Models/BundleExportModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 283 | FileLength>100 | Split file to stay <= 100 lines. |
| 1960 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/Models/BundleImportModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 450 | FileLength>100 | Split file to stay <= 100 lines. |
| 1961 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/Models/KpiRegressionModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 314 | FileLength>100 | Split file to stay <= 100 lines. |
| 1962 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/Services/IKpiRegressionService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | PASS | 69 | | |
| 1963 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/Services/KpiRegressionService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.Reproducible/StellaOps.BinaryIndex.GroundTruth.Reproducible.csproj | BinaryIndex | FAIL | 470 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1964 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/SecDbConnector.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/StellaOps.BinaryIndex.GroundTruth.SecDb.csproj | BinaryIndex | FAIL | 296 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1965 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/SecDbConnectorPlugin.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/StellaOps.BinaryIndex.GroundTruth.SecDb.csproj | BinaryIndex | FAIL | 29 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1966 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/SecDbServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/StellaOps.BinaryIndex.GroundTruth.SecDb.csproj | BinaryIndex | FAIL | 77 | ServiceLocator | Remove service locator usage; use constructor injection. |
| 1967 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/Configuration/SecDbOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/StellaOps.BinaryIndex.GroundTruth.SecDb.csproj | BinaryIndex | PASS | 96 | | |
| 1968 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/Internal/SecDbDiagnostics.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/StellaOps.BinaryIndex.GroundTruth.SecDb.csproj | BinaryIndex | PASS | 78 | | |
| 1969 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/Internal/SecDbParser.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.GroundTruth.SecDb/StellaOps.BinaryIndex.GroundTruth.SecDb.csproj | BinaryIndex | FAIL | 269 | FileLength>100 | Split file to stay <= 100 lines. |
| 1970 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/BinaryCodeTokenizer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 270 | FileLength>100 | Split file to stay <= 100 lines. |
| 1971 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/IEmbeddingService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 175 | FileLength>100 | Split file to stay <= 100 lines. |
| 1972 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/InMemoryEmbeddingIndex.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 139 | FileLength>100 | Split file to stay <= 100 lines. |
| 1973 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/MlServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | PASS | 76 | | |
| 1974 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Models.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 261 | FileLength>100 | Split file to stay <= 100 lines. |
| 1975 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/OnnxInferenceEngine.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 383 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1976 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/B2R2IrTokenizer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 246 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1977 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/GhidraDecompilerAdapter.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 251 | ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 1978 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/GroundTruthCorpusBuilder.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 357 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1979 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/ICorpusBuilder.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 148 | FileLength>100 | Split file to stay <= 100 lines. |
| 1980 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/IDecompilerAdapter.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 134 | FileLength>100 | Split file to stay <= 100 lines. |
| 1981 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/IFunctionEmbeddingService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 124 | FileLength>100 | Split file to stay <= 100 lines. |
| 1982 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/IIrTokenizer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | PASS | 74 | | |
| 1983 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/MlEmbeddingMatcherAdapter.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 173 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1984 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/OnnxFunctionEmbeddingService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 310 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 1985 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/TrainingCorpusModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | FAIL | 300 | FileLength>100 | Split file to stay <= 100 lines. |
| 1986 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/Training/TrainingServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.ML/StellaOps.BinaryIndex.ML.csproj | BinaryIndex | PASS | 84 | | |
| 1987 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/INormalizationPipeline.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/StellaOps.BinaryIndex.Normalization.csproj | BinaryIndex | PASS | 42 | | |
| 1988 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/Models.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/StellaOps.BinaryIndex.Normalization.csproj | BinaryIndex | FAIL | 208 | FileLength>100 | Split file to stay <= 100 lines. |
| 1989 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/NormalizationService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/StellaOps.BinaryIndex.Normalization.csproj | BinaryIndex | PASS | 88 | | |
| 1990 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/StellaOps.BinaryIndex.Normalization.csproj | BinaryIndex | PASS | 52 | | |
| 1991 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/Arm64/Arm64NormalizationPipeline.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/StellaOps.BinaryIndex.Normalization.csproj | BinaryIndex | FAIL | 461 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1992 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/X64/X64NormalizationPipeline.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Normalization/StellaOps.BinaryIndex.Normalization.csproj | BinaryIndex | FAIL | 664 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1993 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/BinaryIndexDbContext.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 51 | AsyncNaming; ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async. |
| 1994 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/BinaryIndexMigrationRunner.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 150 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1995 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/BinaryIdentityRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 257 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1996 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/BinaryVulnAssertionRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 32 | AsyncNaming; ConfigureAwaitMissing | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async. |
| 1997 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/CorpusSnapshotRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 155 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 1998 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/DeltaSignatureRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 769 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 1999 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/FingerprintRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 341 | AsyncNaming; ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 2000 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/FixIndexRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 338 | ConfigureAwaitMissing; FileLength>100; PrivateFieldNaming | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 2001 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/FunctionCorpusRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 1338 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2002 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/IBinaryIdentityRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | PASS | 32 | | |
| 2003 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/IDeltaSignatureRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 382 | FileLength>100 | Split file to stay <= 100 lines. |
| 2004 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/IRawDocumentRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | PASS | 82 | | |
| 2005 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/ISecurityPairRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 103 | FileLength>100 | Split file to stay <= 100 lines. |
| 2006 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/ISourceStateRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | PASS | 64 | | |
| 2007 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/ISymbolObservationRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | PASS | 82 | | |
| 2008 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/ISymbolSourceRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | PASS | 49 | | |
| 2009 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/RawDocumentRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 189 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2010 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/SecurityPairRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 364 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2011 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/SourceStateRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 165 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2012 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/SymbolObservationRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 305 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2013 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Repositories/GroundTruth/SymbolSourceRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 186 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2014 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/Services/BinaryVulnerabilityService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Persistence/StellaOps.BinaryIndex.Persistence.csproj | BinaryIndex | FAIL | 632 | FileLength>100 | Split file to stay <= 100 lines. |
| 2015 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/CallNgramGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 327 | FileLength>100; UsingInsideNamespace | Move using directives outside namespace.; Split file to stay <= 100 lines. |
| 2016 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/IIrLiftingService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | PASS | 48 | | |
| 2017 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/IrLiftingService.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 460 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 2018 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/ISemanticFingerprintGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | PASS | 44 | | |
| 2019 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/ISemanticGraphExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | PASS | 47 | | |
| 2020 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/ISemanticMatcher.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | PASS | 55 | | |
| 2021 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/SemanticFingerprintGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 186 | FileLength>100 | Split file to stay <= 100 lines. |
| 2022 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/SemanticGraphExtractor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 517 | FileLength>100 | Split file to stay <= 100 lines. |
| 2023 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/SemanticMatcher.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 360 | FileLength>100 | Split file to stay <= 100 lines. |
| 2024 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | PASS | 31 | | |
| 2025 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/Internal/GraphCanonicalizer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 114 | FileLength>100 | Split file to stay <= 100 lines. |
| 2026 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/Internal/WeisfeilerLehmanHasher.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 229 | FileLength>100 | Split file to stay <= 100 lines. |
| 2027 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/Lifting/B2R2LifterPool.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 353 | AsyncNaming; BlockingAsync; ConfigureAwaitMissing; FileLength>100; UsingInsideNamespace | Add ConfigureAwait(false) to awaited calls in library-like code.; Move using directives outside namespace.; Rename async methods to end with Async.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 2028 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/Models/FingerprintModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 310 | FileLength>100 | Split file to stay <= 100 lines. |
| 2029 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/Models/GraphModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 262 | FileLength>100 | Split file to stay <= 100 lines. |
| 2030 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/Models/IrModels.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Semantic/StellaOps.BinaryIndex.Semantic.csproj | BinaryIndex | FAIL | 319 | FileLength>100 | Split file to stay <= 100 lines. |
| 2031 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/IValidationHarness.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/StellaOps.BinaryIndex.Validation.Abstractions.csproj | BinaryIndex | PASS | 80 | | |
| 2032 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/MatchResult.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/StellaOps.BinaryIndex.Validation.Abstractions.csproj | BinaryIndex | FAIL | 209 | FileLength>100 | Split file to stay <= 100 lines. |
| 2033 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/MismatchAnalysis.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/StellaOps.BinaryIndex.Validation.Abstractions.csproj | BinaryIndex | FAIL | 296 | FileLength>100 | Split file to stay <= 100 lines. |
| 2034 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/ValidationConfig.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/StellaOps.BinaryIndex.Validation.Abstractions.csproj | BinaryIndex | FAIL | 152 | FileLength>100 | Split file to stay <= 100 lines. |
| 2035 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/ValidationMetrics.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/StellaOps.BinaryIndex.Validation.Abstractions.csproj | BinaryIndex | FAIL | 197 | FileLength>100 | Split file to stay <= 100 lines. |
| 2036 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/ValidationRun.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation.Abstractions/StellaOps.BinaryIndex.Validation.Abstractions.csproj | BinaryIndex | FAIL | 198 | FileLength>100 | Split file to stay <= 100 lines. |
| 2037 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/GroundTruthOracle.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 198 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2038 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/Interfaces.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 186 | FileLength>100 | Split file to stay <= 100 lines. |
| 2039 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/MetricsCalculator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | PASS | 68 | | |
| 2040 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/MismatchAnalyzer.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 210 | BlockingAsync; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Replace .Result/.Wait/GetAwaiter().GetResult() with await.; Split file to stay <= 100 lines. |
| 2041 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/ValidationHarness.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 443 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2042 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/ValidationServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | PASS | 28 | | |
| 2043 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/Attestation/ValidationRunAttestor.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 351 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 2044 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/Matchers/MatcherAdapterFactory.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 106 | FileLength>100 | Split file to stay <= 100 lines. |
| 2045 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/Matchers/MatcherAdapters.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 249 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 2046 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/Persistence/MatchResultRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 219 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2047 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/Persistence/ValidationRunRepository.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 268 | AsyncNaming; ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Rename async methods to end with Async.; Split file to stay <= 100 lines. |
| 2048 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/Reports/ReportGenerators.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.Validation/StellaOps.BinaryIndex.Validation.csproj | BinaryIndex | FAIL | 463 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 2049 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/BinaryMatchEvidenceSchema.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/StellaOps.BinaryIndex.VexBridge.csproj | BinaryIndex | FAIL | 186 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |
| 2050 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/IDsseSigningAdapter.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/StellaOps.BinaryIndex.VexBridge.csproj | BinaryIndex | PASS | 60 | | |
| 2051 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/IVexEvidenceGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/StellaOps.BinaryIndex.VexBridge.csproj | BinaryIndex | PASS | 99 | | |
| 2052 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/ServiceCollectionExtensions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/StellaOps.BinaryIndex.VexBridge.csproj | BinaryIndex | PASS | 51 | | |
| 2053 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/VexBridgeOptions.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/StellaOps.BinaryIndex.VexBridge.csproj | BinaryIndex | PASS | 65 | | |
| 2054 | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/VexEvidenceGenerator.cs | src/BinaryIndex/__Libraries/StellaOps.BinaryIndex.VexBridge/StellaOps.BinaryIndex.VexBridge.csproj | BinaryIndex | FAIL | 524 | ConfigureAwaitMissing; FileLength>100 | Add ConfigureAwait(false) to awaited calls in library-like code.; Split file to stay <= 100 lines. |
| 2055 | src/Cartographer/StellaOps.Cartographer/CartographerEntryPoint.cs | src/Cartographer/StellaOps.Cartographer/StellaOps.Cartographer.csproj | Cartographer | PASS | 6 | | |
| 2056 | src/Cartographer/StellaOps.Cartographer/Program.cs | src/Cartographer/StellaOps.Cartographer/StellaOps.Cartographer.csproj | Cartographer | PASS | 99 | | |
| 2057 | src/Cartographer/StellaOps.Cartographer/Options/CartographerAuthorityOptions.cs | src/Cartographer/StellaOps.Cartographer/StellaOps.Cartographer.csproj | Cartographer | FAIL | 102 | FileLength>100 | Split file to stay <= 100 lines. |
| 2058 | src/Cartographer/StellaOps.Cartographer/Options/CartographerAuthorityOptionsConfigurator.cs | src/Cartographer/StellaOps.Cartographer/StellaOps.Cartographer.csproj | Cartographer | PASS | 39 | | |
| 2059 | src/Cartographer/StellaOps.Cartographer/Options/CartographerAuthorityOptionsValidator.cs | src/Cartographer/StellaOps.Cartographer/StellaOps.Cartographer.csproj | Cartographer | PASS | 21 | | |
| 2060 | src/Cartographer/StellaOps.Cartographer/Properties/AssemblyInfo.cs | src/Cartographer/StellaOps.Cartographer/StellaOps.Cartographer.csproj | Cartographer | PASS | 4 | | |
| 2061 | src/Concelier/__Analyzers/StellaOps.Concelier.Analyzers/ConnectorHttpClientSandboxAnalyzer.cs | src/Concelier/__Analyzers/StellaOps.Concelier.Analyzers/StellaOps.Concelier.Analyzers.csproj | Concelier | FAIL | 97 | PrivateFieldNaming | Rename private fields to _camelCase. |
| 2062 | src/Concelier/__Analyzers/StellaOps.Concelier.Merge.Analyzers/MergeUsageAnalyzer.cs | src/Concelier/__Analyzers/StellaOps.Concelier.Merge.Analyzers/StellaOps.Concelier.Merge.Analyzers.csproj | Concelier | FAIL | 239 | FileLength>100; PrivateFieldNaming | Rename private fields to _camelCase.; Split file to stay <= 100 lines. |