21 lines
634 B
Properties
21 lines
634 B
Properties
# Required metadata
|
|
sonar.projectKey=pms-react
|
|
sonar.projectName=My React Application
|
|
sonar.projectVersion=1.0.0
|
|
|
|
# Path to the sources
|
|
sonar.sources=src
|
|
|
|
# Encoding of the source files
|
|
sonar.sourceEncoding=UTF-8
|
|
|
|
# Exclusions
|
|
sonar.exclusions=**/node_modules/**,**/*.spec.js,**/*.test.js,src/reportWebVitals.js,src/setupTests.js
|
|
|
|
# Language-specific properties (for JavaScript/TypeScript)
|
|
sonar.language=js
|
|
sonar.javascript.lcov.reportPaths=coverage/lcov.info
|
|
|
|
# SonarQube server details (optional if set globally or via command line)
|
|
sonar.host.url=http://sonar.marcoaiot.com
|
|
sonar.token=sqp_ce74dc25bcd924e04b2202252cff26a03afa3707 |