-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsonar-project.properties
More file actions
49 lines (41 loc) · 1.52 KB
/
sonar-project.properties
File metadata and controls
49 lines (41 loc) · 1.52 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
sonar.organization=nhsdigital
sonar.projectKey=NHSDigital_eps-assist-me
sonar.host.url=https://sonarcloud.io
# Global exclusions
sonar.coverage.exclusions=\
**/*.test.*, \
**/tests/**/*, \
**/schema/*, \
**/scripts/*, \
**/__init__.py, \
packages/preprocessingFunction/app/cli.py, \
packages/preprocessingFunction/magika_shim.py, \
eslint.config.mjs, \
packages/cdk/**, \
release.config.js
sonar.cpd.exclusions=\
**/*.test.*, \
**/tests/**/*, \
**/scripts/*, \
eslint.config.mjs, \
packages/cdk/nagSuppressions.ts
sonar.python.version=3.13
# Define the modules
sonar.modules=\
slackBotFunction, \
syncKnowledgeBaseFunction, \
preprocessingFunction, \
bedrockLoggingConfigFunction
# Modules
slackBotFunction.sonar.projectBaseDir=packages/slackBotFunction
slackBotFunction.sonar.sources=.
slackBotFunction.sonar.python.coverage.reportPaths=coverage/coverage.xml
syncKnowledgeBaseFunction.sonar.projectBaseDir=packages/syncKnowledgeBaseFunction
syncKnowledgeBaseFunction.sonar.sources=.
syncKnowledgeBaseFunction.sonar.python.coverage.reportPaths=coverage/coverage.xml
preprocessingFunction.sonar.projectBaseDir=packages/preprocessingFunction
preprocessingFunction.sonar.sources=.
preprocessingFunction.sonar.python.coverage.reportPaths=coverage/coverage.xml
bedrockLoggingConfigFunction.sonar.projectBaseDir=packages/bedrockLoggingConfigFunction
bedrockLoggingConfigFunction.sonar.sources=.
bedrockLoggingConfigFunction.sonar.python.coverage.reportPaths=coverage/coverage.xml