-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsonar-project.properties
23 lines (20 loc) · 1.05 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
#----- Default SonarQube server
sonar.host.url=http://localhost:9000
# must be unique in a given SonarQube instance
sonar.projectKey=org.sonarqube:cvs-svc-test-types
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=cvs-svc-test-types
sonar.projectVersion=1.0
sonar.sourceEncoding=UTF-8
sonar.ts.tslint.configPath=tslint.json
sonar.ts.tslint.outputPath=.reports/lint_issues.json
# 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.exclusions=.build/**,.dynamodb/**, .nyc_output/**, .scannerwork/*, coverage/**, Jenkinsfile/*,**/node_modules/**,**/*.unitTest.ts, **/*.initTest.ts, **/handler.ts
sonar.tests=tests
sonar.test.inclusions=**/*.unitTest.ts, **/*.initTest.ts
sonar.ts.tslint.outputPath=.reports/lint_issues.json
#sonar.javascript.lcov.reportPaths=coverage/lcov.info
sonar.typescript.lcov.reportPaths=coverage/lcov.info
sonar.testExecutionReportPaths=.reports/test-report.xml