-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy path.sonarcloud.properties
More file actions
23 lines (17 loc) · 927 Bytes
/
.sonarcloud.properties
File metadata and controls
23 lines (17 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This file holds the SonarCloud configuration
# See: https://docs.sonarcloud.io/
sonar.projectKey=backube_volsync
sonar.organization=backube
sonar.projectName=VolSync
sonar.projectDescription=Asynchronous data replication for Kubernetes volumes
#sonar.projectVersion=1.0
# Comma-separated paths to directories containing main source files
sonar.sources=.
# Patterns used to exclude some source files from analysis.
sonar.exclusions=**/*_test.go,**/*_generated*.go,**/*_generated/**,**/vendor/**,**/api/v1alpha1/**,**/main.go,mover-restic/restic/**/*,mover-restic/minio-go/**/*
# Patterns used to exclude some source files from security hotspot analysis.
sonar.security.exclusions=mover-restic/restic/**,mover-restic/minio-go/**
# Comma-separated paths to directories containing test source files
sonar.tests=.
# Patterns used to include some test files and only these ones in analysis
sonar.test.inclusions=**/*_test.go