From 885b8f8b60bcc1f12e21de95ca58559afbfdfff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Duffeck?= Date: Wed, 22 Jan 2025 10:51:52 +0100 Subject: [PATCH] Drop the sonarcloud config for now We'll have to set this up from scratch in the future if we still want to have it. --- sonar-project.properties | 53 ---------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 sonar-project.properties diff --git a/sonar-project.properties b/sonar-project.properties deleted file mode 100644 index e154accdb..000000000 --- a/sonar-project.properties +++ /dev/null @@ -1,53 +0,0 @@ - -sonar.projectKey=owncloud_ocis -sonar.organization=owncloud-1 -sonar.projectName=ocis -sonar.projectVersion=7.0.0 -sonar.host.url=https://sonarcloud.io - -# ===================================================== -# Meta-data for the project -# ===================================================== - -sonar.links.homepage=https://github.com/opencloud-eu/opencloud -sonar.links.ci=https://drone.opencloud.eu/opencloud-eu/opencloud/ -sonar.links.scm=https://github.com/opencloud-eu/opencloud -sonar.links.issue=https://github.com/opencloud-eu/opencloud/issues - -# ===================================================== -# Properties that will be shared amongst all modules -# ===================================================== - -# SQ standard properties -sonar.sources=. - -# Pull Requests -sonar.pullrequest.provider=github -sonar.pullrequest.github.repository=opencloud-eu/opencloud -sonar.pullrequest.base=${env.SONAR_PULL_REQUEST_BASE} -sonar.pullrequest.branch=${env.SONAR_PULL_REQUEST_BRANCH} -sonar.pullrequest.key=${env.SONAR_PULL_REQUEST_KEY} - -# Properties specific to language plugins: -sonar.go.coverage.reportPaths=cache/coverage/* -sonar.go.golangci-lint.reportPaths=cache/checkstyle/checkstyle.xml - -# Exclude files -sonar.exclusions=**/third_party,docs/**,changelog/**,**/package.json,**/rollup.config.js,CHANGELOG.md,deployments/**,tests/**,vendor/**,vendor-bin/**,README.md,**/mocks/**,/protogen/**,**/*_gen.go -sonar.coverage.exclusions=**/*_test.go,**mocks/**,/protogen/**,**/*_gen.go -sonar.cpd.exclusions=**/defaultconfig.go,**/*_test.go,**/revaconfig/**,services/settings/pkg/store/defaults/defaults.go - -# Rule exclusions -sonar.issue.ignore.multicriteria=g1,g2 - -# Ignore "Define a constant instead of duplicating this literal" rule for tests -sonar.issue.ignore.multicriteria.g1.ruleKey=go:S1192 -sonar.issue.ignore.multicriteria.g1.resourceKey=**/*_test.go - -# Ignore "Rename function XXX to match the regular expression ^(_|[a-zA-Z0-9]+)$" rule for tests -sonar.issue.ignore.multicriteria.g2.ruleKey=go:S100 -sonar.issue.ignore.multicriteria.g2.resourceKey=**/*_test.go - -# Timeout for web requests -#sonar.ws.timeout=60 is the default, but we need to increase it to deal with timeouts when loading defaults -sonar.ws.timeout=120