Files
ChatBot/.sonarqube/exclusions.txt
Leonid Pershin 800a3e97eb
All checks were successful
SonarQube / Build and analyze (push) Successful in 3m31s
fix
2025-10-21 03:50:42 +03:00

24 lines
586 B
Plaintext

# 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