-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
96 lines (86 loc) · 4.12 KB
/
sonar-project.properties
File metadata and controls
96 lines (86 loc) · 4.12 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# SonarCloud configuration for CellixJS monorepo
# Sensitive values are loaded from environment variables
sonar.projectKey=simnova_cellix-data-access
sonar.organization=simnova
sonar.projectName=CellixJS
sonar.projectVersion=1.0.0
# Source directories - explicit src roots only
sonar.sources=apps/api/src,\
apps/docs/src,\
apps/ui-community/src,\
packages/cellix/archunit-tests/src,\
packages/cellix/api-services-spec/src,\
packages/cellix/config-rolldown/src,\
packages/cellix/domain-seedwork/src,\
packages/cellix/event-bus-seedwork-node/src,\
packages/cellix/graphql-codegen/src,\
packages/cellix/graphql-core/src,\
packages/cellix/server-mongodb-memory-mock-seedwork/src,\
packages/cellix/server-oauth2-mock-seedwork/src,\
packages/cellix/mongoose-seedwork/src,\
packages/cellix/ui-core/src,\
packages/cellix/config-vitest/src,\
packages/ocom/application-services/src,\
packages/ocom/archunit-tests/src,\
packages/ocom/context-spec/src,\
packages/ocom/data-sources-mongoose-models/src,\
packages/ocom/domain/src,\
packages/ocom/event-handler/src,\
packages/ocom/graphql-handler/src,\
packages/ocom/graphql/src,\
packages/ocom/persistence/src,\
packages/ocom/rest/src,\
packages/ocom/service-apollo-server/src,\
packages/ocom/service-blob-storage/src,\
packages/ocom/service-mongoose/src,\
packages/ocom/service-otel/src,\
packages/ocom/service-token-validation/src,\
packages/ocom/ui-components/src
sonar.tests=apps/api/src,\
apps/docs/src,\
apps/ui-community/src,\
packages/cellix/archunit-tests/src,\
packages/cellix/api-services-spec/src,\
packages/cellix/config-rolldown/src,\
packages/cellix/domain-seedwork/src,\
packages/cellix/event-bus-seedwork-node/src,\
packages/cellix/graphql-codegen/src,\
packages/cellix/graphql-core/src,\
packages/cellix/server-mongodb-memory-mock-seedwork/src,\
packages/cellix/server-oauth2-mock-seedwork/src,\
packages/cellix/mongoose-seedwork/src,\
packages/cellix/ui-core/src,\
packages/cellix/config-vitest/src,\
packages/ocom/application-services/src,\
packages/ocom/archunit-tests/src,\
packages/ocom/context-spec/src,\
packages/ocom/data-sources-mongoose-models/src,\
packages/ocom/domain/src,\
packages/ocom/event-handler/src,\
packages/ocom/graphql-handler/src,\
packages/ocom/graphql/src,\
packages/ocom/persistence/src,\
packages/ocom/rest/src,\
packages/ocom/service-apollo-server/src,\
packages/ocom/service-blob-storage/src,\
packages/ocom/service-mongoose/src,\
packages/ocom/service-otel/src,\
packages/ocom/service-token-validation/src,\
packages/ocom/ui-components/src
# Test file patterns
sonar.test.inclusions=**/*.test.ts,**/*.test.tsx,**/*.spec.ts,**/*.spec.tsx,**/*.stories.tsx
# Source exclusions
sonar.exclusions=**/*.config.ts,**/tsconfig.json,**/.storybook/**,**/*.stories.ts,**/*.test.ts,**/*.test.tsx,**/*.generated.ts,**/*.generated.tsx,**/*.d.ts,**/dist/**,**/deploy/**,**/coverage/**,apps/docs/src/test/**,packages/ocom/domain/tests/**,packages/cellix/server-oauth2-mock-seedwork/**,packages/cellix/server-mongodb-memory-mock-seedwork/**
# Coverage exclusions
sonar.coverage.exclusions=**/*.config.ts,**/tsconfig.json,**/.storybook/**,**/*.stories.ts,**/*.stories.tsx,**/*.test.ts,**/*.test.tsx,**/*.generated.ts,**/*.generated.tsx,**/*.d.ts,**/dist/**,**/deploy/**,**/coverage/**,apps/docs/src/test/**,build-pipeline/scripts/**,packages/ocom/domain/tests/**,packages/cellix/server-oauth2-mock-seedwork/**,packages/cellix/server-mongodb-memory-mock-seedwork/**,packages/ocom/data-sources-mongoose-models/**,packages/ocom/graphql/src/schema/builder/schema-builder.ts,apps/api/src/index.ts,apps/api/src/service-config/**,packages/cellix/archunit-tests/**,packages/ocom/archunit-tests/**,packages/cellix/ui-core/**,apps/ui-community/**
# CPD (code duplication) exclusions
sonar.cpd.exclusions=**/*.test.ts,**/*.generated.ts,**/*.generated.tsx
# Coverage report paths
sonar.javascript.lcov.reportPaths=coverage/lcov.info
sonar.typescript.lcov.reportPaths=coverage/lcov.info
# SCM integration
sonar.scm.provider=git
# Node.js memory limit for SonarScanner
# Started receiving this error on CI pipeline:
# ERROR The analysis will stop due to the Node.js process running out of memory (heap size limit 2240 MB)
sonar.javascript.node.maxspace=4096