Merge branch 'main' into simplify-code-quality-tools

This commit is contained in:
2025-04-21 05:03:41 +01:00
committed by GitHub
2 changed files with 19 additions and 9 deletions

View File

@@ -1,17 +1,27 @@
# Required metadata
sonar.projectKey=wpallstars_wp-plugin-starter-template-for-ai-coding sonar.projectKey=wpallstars_wp-plugin-starter-template-for-ai-coding
sonar.organization=wpallstars sonar.organization=wpallstars
# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=wp-plugin-starter-template-for-ai-coding sonar.projectName=wp-plugin-starter-template-for-ai-coding
sonar.projectVersion=0.1.10 sonar.projectVersion=0.1.10
# Path is relative to the sonar-project.properties file # Path to source directories
sonar.sources=. sonar.sources=.
# Path to test directories (comment if no test)
sonar.tests=tests
# Source encoding
sonar.sourceEncoding=UTF-8
# Exclusions for copy-paste detection
sonar.cpd.exclusions=tests/**
# Exclude directories and files
sonar.exclusions=vendor/**,node_modules/**,tests/**,bin/**,build/**,dist/**,.github/**,.git/**
# PHP specific configuration
sonar.php.coverage.reportPaths=coverage.xml sonar.php.coverage.reportPaths=coverage.xml
sonar.php.tests.reportPath=test-report.xml sonar.php.tests.reportPath=test-report.xml
# Encoding of the source code. Default is default system encoding # Additional parameters
sonar.sourceEncoding=UTF-8 sonar.verbose=true
# Exclude directories
sonar.exclusions=vendor/**,node_modules/**,tests/**,bin/**,build/**,dist/**