Merge branch 'main' into simplify-code-quality-tools
This commit is contained in:
2
.github/workflows/code-quality.yml
vendored
2
.github/workflows/code-quality.yml
vendored
@@ -139,4 +139,4 @@ jobs:
|
|||||||
uses: github/codeql-action/upload-sarif@v2
|
uses: github/codeql-action/upload-sarif@v2
|
||||||
with:
|
with:
|
||||||
sarif_file: results.sarif
|
sarif_file: results.sarif
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
@@ -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/**
|
|
||||||
|
|||||||
Reference in New Issue
Block a user