-
Notifications
You must be signed in to change notification settings - Fork 3
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
16 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,16 @@ | ||
# Ключ проекта. Уникальный в пределах сервера SonarQube | ||
sonar.projectKey=my_project | ||
# Имя проекта, отображаемое в интерфейсе SonarQube. Значение по умолчанию - ключ проекта. | ||
sonar.projectName=My project | ||
# Версия проекта | ||
sonar.projectVersion=1.0 | ||
|
||
# Путь к исходным кодам. Относительные пути разрешаются от файла sonar-project.properties | ||
# В качестве разделителя пути используется прямой слэш - /. Можно указать несколько каталогов через запятую. | ||
sonar.sources=src | ||
|
||
# Кодировка файлов исходных кодов. | ||
sonar.sourceEncoding=UTF-8 | ||
|
||
# Фильтры на включение в анализ. В примере ниже - только bsl и os файлы. | ||
sonar.inclusions=**/*.bsl, **/*.os |