-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# must be unique in a given SonarQube instance | ||
sonar.projectKey=vanessa-support | ||
# this is the name displayed in the SonarQube UI | ||
sonar.projectName=vanessa-support | ||
|
||
# # версия проекта | ||
# sonar.projectVersion=1.10.0 | ||
|
||
sonar.links.homepage=https://github.com/vanessa-opensource/vanessa-support | ||
sonar.links.scm=https://github.com/vanessa-opensource/vanessa-support | ||
sonar.links.issue=https://github.com/vanessa-opensource/vanessa-support/issues | ||
# sonar.links.ci= | ||
|
||
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. | ||
# Since SonarQube 4.2, this property is optional if sonar.modules is set. | ||
# If not set, SonarQube starts looking for source code from the directory containing | ||
# the sonar-project.properties file. | ||
sonar.sources=./src,./tasks | ||
sonar.tests=./features | ||
|
||
# маска поиска файлов на проверку | ||
sonar.inclusions=**/*.os | ||
|
||
# маска поиска исключений файлов на проверку | ||
# sonar.exclusions= | ||
|
||
# игнорирование gitignore | ||
sonar.scm.exclusions.disabled=true | ||
|
||
# путь к внешним отчетам | ||
# sonar.externalIssuesReportPaths=./tools/acc-export/acc-generic-issue.json | ||
|
||
# Encoding of the source code. Default is default system encoding | ||
sonar.sourceEncoding=UTF-8 | ||
|
||
sonar.coverageReportPaths=./coverage/genericCoverage.xml | ||
# sonar.testExecutionReportPaths=./bdd-exec.xml | ||
|
||
# адрес сервера SonarQube, по умолчанию текущий компьютер | ||
sonar.host.url=https://sonar.openbsl.ru |