generated from tinovyatkin/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sonar-project.properties
32 lines (25 loc) · 1.07 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
sonar.host.url=https://sonarcloud.io
sonar.ws.timeout=10000
sonar.organization=walletpass
sonar.projectKey=zip-store-stream
sonar.links.homepage=https://github.com/walletpass/zip-store-stream
sonar.links.issue=https://github.com/walletpass/zip-store-stream/issues
sonar.typescript.tsconfigPath=tsconfig.json
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
# 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=src
sonar.test.inclusions=**/*.test.ts
# We don't need to exclude it in sonar.sources because it is automatically taken care of
# code duplication
sonar.cpd.exclusions=**/*.test.ts
# coverage
# sonar.coverage.exclusions=**/__tests__/**
sonar.javascript.lcov.reportPaths=coverage/lcov.info
sonar.typescript.lcov.reportPaths=coverage/lcov.info
# external reporters integration
sonar.eslint.reportPaths=reports/eslint-results.json
sonar.testExecutionReportPaths=reports/jest-reporter.xml
# sonar.junit.reportsPath=junit.xml