Closed
Description
Welcome
- Yes, I've searched similar issues on GitHub and didn't find any.
- I agree to follow this project's Code of Conduct
How did you install golangci-lint?
Brew
Your feature request related to a problem? Please describe
I am not sure if this is a bug, regression, or feature request.
$ golangci-lint --version
golangci-lint has version 2.1.1 built with go1.24.2 from 93dabf9 on 2025-04-12T18:12:29Z
$ golangci-lint run
0 issues.
$ echo $?
0
I would like the option to suppress output to stdout in case of no issues found.
Describe the solution you'd like
$ golangci-lint --version
golangci-lint has version 2.1.1 built with go1.24.2 from 93dabf9 on 2025-04-12T18:12:29Z
$ golangci-lint run
$ echo $?
0
Maybe via -q
/--quiet
or -s
/--silent
.
Describe alternatives you've considered
1>/dev/null
and explicit check of $?
Additional context
No response
Supporter
- I am a sponsor through GitHub or OpenCollective