From c264a7ccd887cd9b55864c7f415869733e77816a Mon Sep 17 00:00:00 2001 From: kashey Date: Mon, 9 Jun 2025 16:10:19 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BD=D0=B0=D1=81=D1=82=D1=80=D0=BE=D0=B9=D0=BA=D0=B8=20sonar-?= =?UTF-8?q?scanner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 ++- sonar-project.properties | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 sonar-project.properties diff --git a/.gitignore b/.gitignore index 95edeac..bc043b0 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -**/ConfigDumpInfo.xml \ No newline at end of file +**/ConfigDumpInfo.xml +.scannerwork \ No newline at end of file diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 0000000..a92d6f7 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,32 @@ +# адрес сервера SonarQube, по умолчанию текущий компьютер +#sonar.host.url=http://localhost:9000 + +# ключ проекта +sonar.projectKey=tg_bot + +# имя проекта +#sonar.projectName=Telegram bot + +# версия проекта +sonar.projectVersion=1.0.0. + +# относительный или абсолютный путь к каталогу с исходными кодом +sonar.sources=./src/cf + +# кодировка +sonar.sourceEncoding=UTF-8 + +# маска поиска файлов на проверку +sonar.inclusions=src/**/*.bsl + +# маска поиска исключений файлов на проверку +# sonar.exclusions= + +# игнорирование gitignore +#sonar.scm.exclusions.disabled=true + +# путь к внешним отчетам +#sonar.externalIssuesReportPaths=./build/acc-generic-issue.json + +# путь к папке с данными покрытия тестами +#sonar.coverageReportPaths=./tools/coverage/result/genericCoverage.xml \ No newline at end of file