Skip to content

Commit e368d73

Browse files
authored
Don't limit the number of issues detected by golangci-lint (#63)
1 parent 01172d3 commit e368d73

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

gradle-modules/src/main/kotlin/org.sonarsource.cloud-native.go-binary-builder.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ if (isCi()) {
8686
commandLine(
8787
"golangci-lint",
8888
"run",
89+
// Don't limit the number of issues in the report
90+
"--max-issues-per-linter=0",
91+
"--max-same-issues=0",
92+
// Output format for SonarQube ingestion
8993
"--output.checkstyle.path",
9094
"${reportPath.get().asFile}"
9195
)

0 commit comments

Comments
 (0)