-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
25 lines (18 loc) · 1.08 KB
/
sonar-project.properties
File metadata and controls
25 lines (18 loc) · 1.08 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
sonar.projectKey=huzaifa-fullstack_scribo-notes-ai
sonar.organization=huzaifa-fullstack
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=ScriboNotesAI
sonar.projectVersion=1.0
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=backend/src,frontend/src
# Test files location
sonar.tests=backend/tests
# Exclusions (exclude from analysis entirely)
sonar.exclusions=**/node_modules/**,**/dist/**,**/build/**,**/coverage/**,**/.nyc_output/**,**/public/**,**/*.d.ts,**/*.config.js,**/*.config.ts,**/vite.config.*,**/vitest.config.*,**/eslint.config.*,frontend/src/tests/**,backend/tests/**
# Test exclusions (for source files only)
sonar.test.exclusions=**/*.test.js,**/*.test.ts,**/*.test.tsx,**/*.spec.js,**/*.spec.ts,**/*.spec.tsx
# Coverage reports
sonar.javascript.lcov.reportPaths=backend/coverage/lcov.info,frontend/coverage/lcov.info
sonar.typescript.lcov.reportPaths=backend/coverage/lcov.info,frontend/coverage/lcov.info
# Encoding of the source code. Default is default system encoding
sonar.sourceEncoding=UTF-8