-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
51 lines (46 loc) · 1.72 KB
/
sonar-project.properties
File metadata and controls
51 lines (46 loc) · 1.72 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
sonar.projectKey=unosim
sonar.projectName=UnoSim
sonar.projectVersion=1.0
sonar.plugins.downloadOnlyRequired=false
# Diese Konfigs funktionieren nicht:
#sonar.sources.1=client/src
#sonar.sources.2=server
#sonar.sources.3=shared
#sonar.sources=client/src,server
sonar.sources=client/src,shared,server
sonar.tests=tests
sonar.scm.exclusions.disabled=true
sonar.exclusions=server/arduino-cache/**,**/node_modules/**,**/dist/**
# Coverage-Exclusions: Entry Points, Generated UI Wrappers, Type-Only Files,
# Complex UI Components (Integration/E2E Territory)
sonar.coverage.exclusions=\
client/src/main.tsx,\
client/src/App.tsx,\
client/src/pages/not-found.tsx,\
server/index.ts,\
server/vite.ts,\
server/services/workers/compile-worker.ts,\
client/src/vite-env.d.ts,\
client/src/components/ui/alert-dialog.tsx,\
client/src/components/ui/card.tsx,\
client/src/components/ui/checkbox.tsx,\
client/src/components/ui/dialog.tsx,\
client/src/components/ui/input.tsx,\
client/src/components/ui/toast.tsx,\
client/src/components/ui/toaster.tsx,\
client/src/components/ui/tooltip.tsx,\
client/src/components/features/app-header.tsx,\
client/src/components/features/arduino-board.tsx,\
client/src/components/features/code-editor.tsx,\
client/src/components/features/serial-plotter.tsx,\
client/src/components/features/settings-dialog.tsx,\
client/src/components/features/sketch-tabs.tsx,\
client/src/hooks/use-websocket.tsx,\
server/routes.ts,\
server/routes/auth.routes.ts,\
server/routes/simulation.ws.ts,\
server/services/run-sketch-types.ts,\
shared/types/arduino.types.ts
sonar.javascript.lcov.reportPaths=coverage/lcov.info
sonar.typescript.lcov.reportPaths=coverage/lcov.info
sonar.host.url=http://localhost:9000