-
Notifications
You must be signed in to change notification settings - Fork 0
/
sonar-project.properties
32 lines (26 loc) · 1.11 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
# =====================================================
# Standard Properties
# =====================================================
# Ref: https://docs.sonarqube.org/latest/analysis/analysis-parameters/
sonar.organization=six-after
sonar.projectKey=six-after_semver
sonar.verbose=true
sonar.sources=.
sonar.exclusions=**/*_test.go,**/vendor/**,docs/**,scripts/**
sonar.tests=.
sonar.test.inclusions=**/*_test.go
sonar.test.exclusions=**/vendor/**,docs/**,scripts/**
# =====================================================
# Project Configuration
# =====================================================
sonar.links.homepage=https://github.com/sixafter/semver
sonar.links.ci=https://github.com/sixafter/semver
sonar.links.scm=https://github.com/sixafter/semver
sonar.links.issue=https://github.com/sixafter/semver
# =====================================================
# Properties specific to Go
# =====================================================
#sonar.go.govet.reportPaths=govet-report.out
#sonar.go.golint.reportPaths=golint-report.out
sonar.go.tests.reportPaths=coverage.json
sonar.go.coverage.reportPaths=coverage.out