-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
64 lines (58 loc) · 1.79 KB
/
Copy pathsonar-project.properties
File metadata and controls
64 lines (58 loc) · 1.79 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
sonar.projectKey=chewi-clinton_LexCamAI
sonar.organization=chewi-clinton
sonar.projectName=LexCamAI
# Sources — all Python service/worker apps + Next.js frontend src
sonar.sources=\
services/user-management/apps,\
services/lawyer-service/apps,\
services/document-service/apps,\
services/payment-service/apps,\
services/notification-service/app,\
services/feedback-service/app,\
services/admin-panel/apps,\
services/scraper-service/app,\
services/rag-service/app,\
services/knowledge-base-service/app,\
services/embedding-service/app,\
workers/doc-worker,\
workers/notification-worker,\
workers/indexing-worker,\
workers/lawyer-ingest-worker
# Python coverage reports (XML) — generated by Coverage stage
sonar.python.coverage.reportPaths=\
services/user-management/coverage.xml,\
services/lawyer-service/coverage.xml,\
services/document-service/coverage.xml,\
services/payment-service/coverage.xml,\
services/notification-service/coverage.xml,\
services/feedback-service/coverage.xml,\
services/admin-panel/coverage.xml,\
services/scraper-service/coverage.xml,\
services/rag-service/coverage.xml,\
services/knowledge-base-service/coverage.xml,\
services/embedding-service/coverage.xml,\
workers/doc-worker/coverage.xml,\
workers/notification-worker/coverage.xml,\
workers/indexing-worker/coverage.xml,\
workers/lawyer-ingest-worker/coverage.xml
sonar.python.version=3.11
# Exclusions
sonar.exclusions=\
**/migrations/**,\
**/__pycache__/**,\
**/.venv/**,\
**/node_modules/**,\
**/playwright-report/**,\
**/test-results/**,\
**/*.min.js,\
frontend/.next/**,\
**/conftest.py,\
**/templates/**,\
**/jinja2/**,\
**/*.html
sonar.coverage.exclusions=\
**/migrations/**,\
**/admin.py,\
**/apps.py,\
**/conftest.py
sonar.sourceEncoding=UTF-8