Skip to content

Commit 55cdda4

Browse files
committed
Fix #159: add silent option to .golangci.example.yml
1 parent 973c9fd commit 55cdda4

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.golangci.example.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ run:
3636
- ".*\\.my\\.go$"
3737
- lib/bad.go
3838

39+
# whether to hide "congrats" message if no issues were found,
40+
# default is false (show "congrats" message by default).
41+
# set this option to true to print nothing if no issues were found.
42+
silent: true
43+
3944

4045
# output configuration options
4146
output:

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,11 @@ run:
454454
- ".*\\.my\\.go$"
455455
- lib/bad.go
456456

457+
# whether to hide "congrats" message if no issues were found,
458+
# default is false (show "congrats" message by default).
459+
# set this option to true to print nothing if no issues were found.
460+
silent: true
461+
457462

458463
# output configuration options
459464
output:

0 commit comments

Comments
 (0)