-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsonar-project.properties
More file actions
31 lines (23 loc) · 951 Bytes
/
sonar-project.properties
File metadata and controls
31 lines (23 loc) · 951 Bytes
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
# SonarCloud Configuration
sonar.organization=oleg-ivanov
sonar.projectKey=greydragon888_vitest-react-profiler
# Project Information
sonar.projectName=vitest-react-profiler
sonar.projectVersion=1.12.0
# Source Code
sonar.sources=src
sonar.tests=tests
sonar.test.inclusions=tests/**/*.test.ts,tests/**/*.test.tsx,tests/**/*.spec.ts,tests/**/*.spec.tsx
# Coverage
sonar.javascript.lcov.reportPaths=coverage/lcov.info
sonar.coverage.exclusions=**/*.test.ts,**/*.test.tsx,**/*.spec.ts,**/*.spec.tsx,**/tests/**,**/examples/**,**/*.config.ts,**/*.config.mts,**/*.config.js
# Exclusions
sonar.exclusions=**/node_modules/**,**/dist/**,**/build/**,**/coverage/**,**/*.min.js,**/examples/**,**/.vitest/**,**/*.config.ts,**/*.config.mts,**/*.config.js
# Duplications
sonar.cpd.exclusions=**/tests/**,**/examples/**
# TypeScript
sonar.typescript.tsconfigPath=tsconfig.json
# Encoding
sonar.sourceEncoding=UTF-8
# Code Quality
sonar.qualitygate.wait=true