stoneerror/sonar-project.properties
Rene Nochebuena e65fc49b8e
All checks were successful
Go CI/CD / go-ci (push) Successful in 11m13s
Add initial project setup with Go modules and CI/CD workflows
This commit initializes the project with Go module support and a basic `StoneError` struct. It also introduces .gitignore, SonarQube configuration, and multiple CI/CD workflows for branch, tag, and protected branch scenarios to automate testing, static analysis, and builds.
2025-04-12 16:51:32 -06:00

10 lines
321 B
INI

sonar.projectKey=f91c1ade-619a-4d18-b7c9-5143b0c7bd47
sonar.projectName=stone-utils/stoneerror
sonar.language=go
sonar.sources=.
sonar.exclusions=**/*_test.go
sonar.tests=.
sonar.test.inclusions=**/*_test.go
sonar.go.tests.reportPaths=test-report.out
sonar.go.coverage.reportPaths=coverage.out
sonar.qualitygate.wait=true