Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# yaml-language-server: $schema=https://coderabbit.ai/export/schema.json
language: "pt-BR"
reviews:
path_filters:
- "!**/*.lock"
- "!**/package-lock.json"
- "!**/yarn.lock"
- "!**/pnpm-lock.yaml"
- "!**/Migrations/**"
- "!**/*.Designer.cs"
- "!**/*.generated.*"
- "!**/.nx/**"
- "!**/dist/**"
- "!**/bin/**"
- "!**/obj/**"
- "!**/CoverageReport/**"
- "!**/TestResults/**"
5 changes: 5 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ dotnet_diagnostic.CA1051.severity = none # Do not declare visible instance field
dotnet_diagnostic.CA1852.severity = none # Type can be sealed
dotnet_diagnostic.CA1507.severity = none # Use nameof in place of string literal

# Technical Excellence Sprint Suppressions (Avoiding source code pollution)
dotnet_diagnostic.S2068.severity = none # HardcodedPasswordCheck: Suppressed for messaging constants and test connection strings
dotnet_diagnostic.S3267.severity = none # Loop should be simplified by calling LINQ: Suppressed for middleware and infrastructure loops
dotnet_diagnostic.CS0105.severity = none # Duplicate using directive: Suppressed to avoid noise while refactoring Shared

# Restore critical rules to suggestions to catch potential bugs
dotnet_diagnostic.CS8602.severity = suggestion # Dereference of a possibly null reference
dotnet_diagnostic.CS8618.severity = suggestion # Non-nullable field must contain a non-null value
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@ jobs:
- name: Validate workflow files only
run: |
echo "🔍 Validating critical YAML files..."
if ! python3 -m yamllint -c config/.yamllint.yml .github/workflows/; then
if ! python3 -m yamllint -c src/Web/config/.yamllint.yml .github/workflows/; then
echo "❌ YAML validation failed"
echo "ℹ️ Check yamllint output above for details"
exit 1
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,8 @@ legacy-analysis-report.*
site/

/src/Web/MeAjudaAi.Web.Customer/layout.css

.nx/installation
.nx/cache
.nx/workspace-data
vite.config.*.timestamp*
3 changes: 0 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,9 @@
<!-- Azure -->
<PackageVersion Include="Azure.AI.DocumentIntelligence" Version="1.0.0" />
<PackageVersion Include="Azure.Storage.Blobs" Version="12.27.0" />
<PackageVersion Include="Azure.Messaging.ServiceBus" Version="7.20.1" />
<!-- Messaging -->
<PackageVersion Include="RabbitMQ.Client" Version="7.2.1" />
<PackageVersion Include="Rebus" Version="8.9.0" />
<PackageVersion Include="Rebus.AzureServiceBus" Version="10.5.1" />
<PackageVersion Include="Rebus.RabbitMq" Version="10.1.1" />
<PackageVersion Include="Rebus.ServiceProvider" Version="10.7.2" />
<!-- Health Checks -->
Expand Down Expand Up @@ -178,7 +176,6 @@
<!-- Tested: Build + Integration tests pass without this Aspire wrapper -->
<PackageVersion Include="Aspire.Hosting.Azure.AppContainers" Version="13.1.2" />
<PackageVersion Include="Aspire.Hosting.Azure.PostgreSQL" Version="13.1.2" />
<PackageVersion Include="Aspire.Hosting.Azure.ServiceBus" Version="13.1.2" />
<PackageVersion Include="Aspire.Hosting.JavaScript" Version="13.1.2" />
<PackageVersion Include="Aspire.Hosting.Testing" Version="13.1.2" />
<!-- Aspire.Hosting.Keycloak: NO STABLE VERSION EXISTS - using latest preview -->
Expand Down
130 changes: 0 additions & 130 deletions api/README.md

This file was deleted.

68 changes: 0 additions & 68 deletions automation/README.md

This file was deleted.

Loading