From f8e527fdca3f557d75a438b3f9f4358cd093b1fd Mon Sep 17 00:00:00 2001 From: Nicolas Ayral Seydoux Date: Thu, 26 Sep 2024 11:49:46 +0200 Subject: [PATCH] fixup! Exclude coverage directory from analysis --- sonar-project.properties | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sonar-project.properties b/sonar-project.properties index acb1d97..d2a7784 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,10 +1,13 @@ sonar.projectKey=inrupt_inrupt-data-wallet sonar.organization=inrupt +# Path is relative to the sonar-project.properties file. Defaults to . +sonar.sources=api,app,components,constants,hooks,types,utils + # Typescript tsconfigPath JSON file sonar.typescript.tsconfigPath=. # Comma-delimited list of paths to LCOV coverage report files. Paths may be absolute or relative to the project root. sonar.javascript.lcov.reportPaths=./coverage/lcov.info -sonar.exclusions=**/*.test.ts,coverage/ +sonar.exclusions=**/*.test.tsx?