From c9123df1c4b8abb162051c6f59e15c4dc4fd324e Mon Sep 17 00:00:00 2001 From: SeSo Date: Tue, 19 Sep 2023 15:22:01 -0700 Subject: [PATCH] chore: add sonar cloud properties --- .sonarcloud.properties | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .sonarcloud.properties diff --git a/.sonarcloud.properties b/.sonarcloud.properties new file mode 100644 index 0000000000..ef03ea84a0 --- /dev/null +++ b/.sonarcloud.properties @@ -0,0 +1,19 @@ +# https://docs.sonarqube.org/latest/analysis/analysis-parameters/ +sonar.projectKey=bcgov_cas-registration +sonar.organization=bcgov-sonarcloud +sonar.host.url=https://sonarcloud.io +sonar.projectName=cas-registration +sonar.verbose=true + +sonar.python.file.suffixes=py +sonar.python.version=3.9 + +# Path is relative to the sonar-project.properties file. Defaults to . +sonar.sources=. + +sonar.exclusions=**/Makefile, **/*.Dockerfile +sonar.test.exclusions=*.feature +sonar.tests.inclusions=**/*.test.tsx + +# Encoding of the source code. Default is default system encoding +sonar.sourceEncoding=UTF-8