fix
All checks were successful
SonarQube / Build and analyze (push) Successful in 3m31s

This commit is contained in:
Leonid Pershin
2025-10-21 03:50:42 +03:00
parent dab86d1c81
commit 800a3e97eb
4 changed files with 63 additions and 42 deletions

23
.sonarqube/exclusions.txt Normal file
View File

@@ -0,0 +1,23 @@
# SonarQube Exclusions Reference
# This file is for documentation only - exclusions are configured in .gitea/workflows/build.yml
## Coverage Exclusions (sonar.coverage.exclusions)
**/Migrations/**
**/Migrations/*.cs
**/*ModelSnapshot.cs
## File Exclusions (sonar.exclusions)
**/Migrations/**
**/obj/**
**/bin/**
**/TestResults/**
## Source and Test Directories
Sources: ChatBot/
Tests: ChatBot.Tests/
## Why these exclusions?
- Migrations: Auto-generated EF Core code
- ModelSnapshot: Auto-generated EF Core snapshot
- obj/bin: Build artifacts
- TestResults: Test execution results