-
Notifications
You must be signed in to change notification settings - Fork 81
/
sonar-project.properties
33 lines (24 loc) · 1.18 KB
/
sonar-project.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
sonar.host.url=https://sonarcloud.io
sonar.login=9b7681aec9543575bbd12236c9aa8d2bea620b0f
# must be unique in a given SonarQube instance
sonar.projectKey=xludx_particl-market
sonar.organization=xludx-github
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=particl-market
sonar.projectVersion=0.0.44
sonar.language=ts
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
sonar.sources=src
sonar.tests=test
# excluded folders
sonar.exclusions=src/console/**/*,src/constants/**/*,src/database/**/*,src/public/*,src/types/*
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
# SonarTS does not generate its own test coverage report, but re-uses the one generated by LCOV.
# sonar.typescript.lcov.reportPaths=test/reports/test-report.xml
#sonar.testExecutionReportPaths=test/reports/test-report.xml
#sonar.typescript.lcov.reportPaths=test/reports/coverage.lcov
sonar.typescript.lcov.reportPaths=test/reports/test-report.xml
sonar.test.inclusions=test/**/*.test.ts
sonar.ts.tslintconfigpath=tslint.json