-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SonarCloud configuration (#2230)
No-Issue
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 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
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,23 @@ | ||
# Complete documentation with many more options at: | ||
# https://docs.sonarqube.org/latest/analysis/analysis-parameters/ | ||
|
||
## The unique project identifier. This is mandatory. | ||
# Do not duplicate or reuse! | ||
# Available characters: [a-zA-Z0-9_:\.\-] | ||
# Must have least one non-digit. | ||
# Recommended format: <group>:<project> | ||
sonar.projectKey = ansible_galaxy_ng | ||
sonar.organization = ansible | ||
|
||
# Verbose name of project displayed in WUI. Default is set to the projectKey. This field is optional. | ||
sonar.projectName = galaxy_ng | ||
# Version of project. This field is optional. | ||
#sonar.projectVersion = 1.0 | ||
|
||
sonar.sources = galaxy_ng | ||
sonar.exclusions = galaxy_ng/tests/**/* | ||
|
||
sonar.tests = galaxy_ng/tests | ||
|
||
sonar.python.version = 3.9,3.10,3.11 | ||
|