From f23dbee53b0ca789b1aa4291c2d10c5be4b66cab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbyn=C4=9Bk=20Dr=C3=A1pela?= Date: Thu, 2 Jul 2026 09:56:49 +0200 Subject: [PATCH] chore: exclude .ci/ from SonarCloud source analysis The .ci/ directory contains CI infrastructure (shell scripts, Dockerfiles, YAML configs) that is not application source code. SonarCloud findings on these files are noise. Assisted-by: OpenCode --- .sonarcloud.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.sonarcloud.properties b/.sonarcloud.properties index 1b614a646f..c4cae2dbc1 100644 --- a/.sonarcloud.properties +++ b/.sonarcloud.properties @@ -5,8 +5,8 @@ sonar.tests= . # Include test subdirectories in test scope sonar.test.inclusions = e2e-tests/**/*, **/*.test.* -# Exclude test subdirectories from source scope -sonar.exclusions = e2e-tests/**/*, **/*.test.* +# Exclude test and CI infrastructure from source scope +sonar.exclusions = e2e-tests/**/*, .ci/**/*, **/*.test.* # comma delimited path of files to exclude from copy/paste duplicate checking sonar.cpd.exclusions=packages/app/src/components/DynamicRoot/DynamicRoot.test.tsx,packages/app/src/components/admin/AdminTabs.test.tsx,packages/app/src/components/catalog/EntityPage/defaultTabs.tsx,e2e-tests/playwright/e2e/audit-log/LogUtils.ts