-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsonar-project.properties
More file actions
20 lines (15 loc) · 1.07 KB
/
Copy pathsonar-project.properties
File metadata and controls
20 lines (15 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sonar.projectKey=ZeR020_opencode-mem0
sonar.organization=zer020
sonar.host.url=https://sonarcloud.io
sonar.sources=src,scripts
sonar.tests=tests
sonar.typescript.tsconfigPath=tsconfig.json
sonar.exclusions=node_modules/**,dist/**,out/**,coverage/**
sonar.test.inclusions=tests/**/*.test.ts
# Exclude files that are untestable infrastructure (plugin entry, web UI,
# migration scripts, type definitions, thin wrappers) from coverage gate.
sonar.coverage.exclusions=tests/**,examples/**,src/types/**,src/**/*.types.ts,src/index.ts,src/web/**,src/plugin.ts,src/services/vector-backends/shared.ts,src/services/sqlite/shard-manager.ts,src/services/migration-service.ts,src/services/ai/opencode-provider.ts,src/services/user-prompt/user-prompt-manager.ts,src/services/secret-resolver.ts,src/services/handlers/shared-types.ts,src/services/handlers/admin.ts,src/services/handlers/profile.ts,src/services/handlers/transcripts.ts,scripts/migrate-v1-to-v2.ts
# Coverage report path (generated by vitest --coverage)
sonar.javascript.lcov.reportPaths=coverage/lcov.info
# Encoding
sonar.sourceEncoding=UTF-8