-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from xmidt-org/add-sonar
Fix the makefile target name.
- Loading branch information
Showing
5 changed files
with
53 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ pkg/ | |
lib/ | ||
*.out | ||
*.swp | ||
coverage.txt | ||
report.json | ||
|
||
# for VSCode | ||
.vscode/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Reference: | ||
# https://github.com/SonarSource/sonarcloud_example_go-sqscanner-travis/blob/master/sonar-project.properties | ||
|
||
|
||
# ===================================================== | ||
# Standard properties | ||
# ===================================================== | ||
|
||
sonar.projectKey=xmidt-org_themis | ||
sonar.projectName=themis | ||
|
||
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/xmidt-org/themis | ||
sonar.links.ci=https://travis-ci.org/xmidt-org/themis | ||
sonar.links.scm=https://github.com/xmidt-org/themis | ||
sonar.links.issue=https://github.com/xmidt-org/themis/issues | ||
|
||
# ===================================================== | ||
# Properties specific to Go | ||
# ===================================================== | ||
|
||
sonar.go.tests.reportPaths=report.json | ||
sonar.go.coverage.reportPaths=coverage.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters