-
Notifications
You must be signed in to change notification settings - Fork 11
/
sonar-project.properties
48 lines (39 loc) · 1.29 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
sonar.projectVersion=${env.SONAR_PROJECT_VERSION}
# must be unique in a given SonarQube instance
sonar.projectKey=mistica-web
sonar.host.url=http://epg-sonar.hi.inet:9000
sonar.exclusions=\
**/__screenshot_tests__/**,\
**/__acceptance_tests__/**,\
**/__stories__/**,\
**/__private_stories__/**,\
**/__tests__/**,\
**/__type_tests__/**,\
**/.yarn/**,\
**/codemods/**,\
**/css/**,\
**/dist-es/**,\
**/dist/**,\
**/examples/**,\
**/node_modules/**,\
**/packages/**,\
**/playroom/**,\
**/public/**,\
**/reports/**,\
**/scripts/**,\
src/generated/**,\
src/test-utils/**
# https://docs.sonarsource.com/sonarqube/latest/analyzing-source-code/test-coverage/test-coverage-parameters/#sonarjavascriptlcovreportpaths
sonar.typescript.lcov.reportPaths=./reports/coverage/lcov.info
sonar.test.inclusions=\
**/__tests__/**/*-test.tsx,\
**/__tests__/**/*-test.ts,\
**/__tests__/**/*-test.js
# defaults to project key
sonar.projectName=mistica-web
# Path is relative to the sonar-project.properties file. Defaults to .
sonar.sources=.
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
# https://docs.sonarsource.com/sonarqube/latest/analyzing-source-code/scm-integration/
sonar.scm.disabled=True