-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonar-project.properties
33 lines (27 loc) · 1.15 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
# =====================================================
# Standard properties
# =====================================================
sonar.projectKey=obalunenko_getenv
sonar.projectName=getenv
sonar.organization=obalunenko
sonar.projectVersion=1.0
sonar.host.url=https://sonarcloud.io
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=.
sonar.exclusions=**/*_test.go,**/vendor/**
sonar.tests=.
sonar.test.inclusions=**/*_test.go
sonar.test.exclusions=**/vendor/**
# =====================================================
# Meta-data for the project
# =====================================================
sonar.links.homepage=https://github.com/obalunenko/getenv
sonar.links.ci=https://github.com/obalunenko/getenv/actions
sonar.links.issue=https://github.com/obalunenko/getenv/issues
# =====================================================
# Properties specific to Go
# =====================================================
sonar.go.golangci-lint.reportPaths=linters.out
sonar.go.tests.reportPaths=tests-report.json
sonar.go.coverage.reportPaths=coverage/full.cov