generated from tinovyatkin/typescript-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.sonarcloud.properties
32 lines (24 loc) · 971 Bytes
/
.sonarcloud.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
# sonar.host.url=https://sonarcloud.io
# sonar.ws.timeout=10000
# sonar.organization=walletpass
# sonar.projectKey=walletpass_pass-js
# sonar.links.homepage=
# sonar.links.issue=
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=__tests__
# We don't need to exclude it in sonar.sources because it is automatically taken care of
sonar.test.inclusions=**/__tests__/*.ts
# code duplication
sonar.cpd.exclusions=**/__tests__/**
# coverage
sonar.coverage.exclusions=**/__tests__/**
sonar.typescript.lcov.reportPaths=coverage/lcov.info
# external reporters integration
# sonar.eslint.reportPaths=eslint-results.json
# sonar.testExecutionReportPaths=reports/test-reporter.xml
# sonar.junit.reportsPath=junit.xml