-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
.sonarcloud.properties
33 lines (25 loc) · 1.08 KB
/
.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
32
# sonar.host.url=https://sonarcloud.io
# sonar.ws.timeout=10000
# sonar.organization=walletpass
# sonar.projectKey=walletpass_pass-js
sonar.links.homepage=https://github.com/walletpass/pass-js
sonar.links.issue=https://github.com/walletpass/pass-js/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=__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
# pending https://github.com/3dmind/jest-sonar-reporter/issues/30
# sonar.testExecutionReportPaths=reports/test-reporter.xml
sonar.junit.reportsPath=junit.xml