-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsonar-project.properties
More file actions
43 lines (38 loc) · 1.83 KB
/
sonar-project.properties
File metadata and controls
43 lines (38 loc) · 1.83 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
sonar.projectKey=internxt_drive-server-wip
sonar.organization=internxt
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=drive-server-wip
#sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.
# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
# This parameter must be set to the path of the report file produced by your coverage tool. The path can be either absolute or relative to the project root.
sonar.javascript.lcov.reportPaths=./coverage/lcov.info
# Coverage exclusions:
# - One-off scripts and CLI commands:
# feature-limit-migration.service.ts, retroactive-items-cleanup.task.ts, retroactive-deleted-items-cleanup.command.ts
# - Unused modules with 0 imports in src/:
# request-context.ts, binary-converter.ts, newrelic-trace-method.decorator.ts,
# items-to-trash.event.ts, conditional-captcha.guard.ts, private.decorator.ts,
# rs256jwt.strategy.ts, platform.constants.ts
sonar.coverage.exclusions=\
**/*.spec.ts, \
**/seeders/**, \
**/migrations/**, \
**/*.model.ts, \
**/*.module.ts, \
**/*.e2e-spec.ts, \
**/test/helpers/**, \
**/feature-limit/feature-limit-migration.service.ts, \
**/jobs/tasks/retroactive-items-cleanup.task.ts, \
**/jobs/commands/retroactive-deleted-items-cleanup.command.ts, \
**/lib/request-context.ts, \
**/lib/binary-converter.ts, \
**/common/decorators/newrelic-trace-method.decorator.ts, \
**/externals/notifications/events/items-to-trash.event.ts, \
**/modules/auth/conditional-captcha.guard.ts, \
**/modules/auth/decorators/private.decorator.ts, \
**/modules/auth/rs256jwt.strategy.ts, \
**/modules/feature-limit/constants/platform.constants.ts
sonar.cpd.exclusions=**/*.spec.ts, **/seeders/**, **/migrations/**, **/*.e2e-spec.ts