-
Notifications
You must be signed in to change notification settings - Fork 13
/
sonar-project.properties
35 lines (29 loc) · 1.22 KB
/
sonar-project.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# =====================================================
# Standard properties
# =====================================================
sonar.projectKey=Dipperin-Dev
sonar.projectName=Dipperin-Dev
sonar.projectVersion=1.0
sonar.sources=.
sonar.exclusions=**/*_test.go,**/vendor/**,**.java,**/third-party/**
sonar.tests=.
sonar.test.inclusions=**/*_test.go
sonar.test.exclusions=**/vendor/**,**/third-party/**
# =====================================================
# Meta-data for the project
# =====================================================
sonar.links.homepage=https://github.com/dipperin/dipperin-core
sonar.links.ci=https://travis-ci.com/dipperin/dipperin-core
sonar.links.scm=https://github.com/dipperin/dipperin-core
sonar.links.issue=https://github.com/dipperin/dipperin-core
# =====================================================
# Properties specific to Go
# =====================================================
sonar.c.file.suffixes=-
sonar.cpp.file.suffixes=-
sonar.objc.file.suffixes=-
sonar.go.gometalinter.reportPaths=gometalinter-report.out
#sonar.go.govet.reportPaths=govet-report.out
#sonar.go.golint.reportPaths=golint-report.out
sonar.go.tests.reportPaths=report.json
sonar.go.coverage.reportPaths=coverage.out