-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsonar-project.properties
More file actions
23 lines (17 loc) · 922 Bytes
/
sonar-project.properties
File metadata and controls
23 lines (17 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sonar.projectKey=Horizon-Digital-Engineering_fpe-demo-mcp
sonar.organization=horizon-digital-engineering
# This is the name displayed in the SonarCloud UI.
# Version is automatically read from package.json
sonar.projectName=FPE Demo MCP
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=src
sonar.tests=tests
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8
# TypeScript/JavaScript specific settings
sonar.javascript.lcov.reportPaths=coverage/lcov.info
# Exclude test files and server startup files from code coverage analysis
# TODO: Refactor server files to separate business logic from startup/shutdown code for better testability
sonar.coverage.exclusions=tests/**/*,**/*.test.ts,**/*.test.js,src/http-server.ts,src/stdio-server.ts
# Exclude node_modules and build output
sonar.exclusions=node_modules/**/*,dist/**/*