forked from cosmos/interchain-security
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
23 lines (19 loc) · 845 Bytes
/
sonar-project.properties
File metadata and controls
23 lines (19 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sonar.projectKey=cosmos_interchain-security
sonar.organization=cosmos
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=Interchain Security
#sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
# All golang artifacts
sonar.sources=.
# Do not calculate coverage metrics for statements in these files
sonar.exclusions=**/vendor/**,**/*.pb.go,**/*.pb.gw.go,proto,**/*_test.go,tests/**,testutil/**,docs/**,app/**,cmd/**,
sonar.tests=.
# Run unit and integration tests, but not E2E tests
sonar.test.inclusions=**/*_test.go
# Do not run any vendor tests
sonar.test.exclusions=**/vendor/**
sonar.go.coverage.reportPaths=coverage.out,*profile.out