From f0a05876ed3645d33d5441fbcaf2f4340ea1a07b Mon Sep 17 00:00:00 2001 From: Ken Date: Mon, 21 Aug 2023 20:18:15 -0400 Subject: [PATCH] sonar updates --- sonar-project.properties | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sonar-project.properties diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 0000000..01ebe96 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,18 @@ +# must be unique in a given SonarQube instance +sonar.projectKey=Ulbora_go-micro-blog-ui +# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1. +sonar.projectName=go-micro-blog-ui +sonar.projectVersion=1.0 +sonar.organization=ulboralabs + +# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. +# This property is optional if sonar.modules is set. +sonar.sources=. +sonar.exclusions=**/*_test.go,**/vendor/**,scripts/**/*,/docs/**/*,main.go,static/**/* +sonar.test.inclusions=**/*_test.go +sonar.host.url=https://sonarcloud.io +sonar.go.coverage.reportPaths=delegates/coverage.out, signins/coverage.out, handlers/coverage.out + + +# Encoding of the source code. Default is default system encoding +#sonar.sourceEncoding=UTF-8 \ No newline at end of file