From 55cdda41660cbc165d35443115026bdff557b5c7 Mon Sep 17 00:00:00 2001 From: Denis Isaev Date: Sun, 29 Jul 2018 23:43:19 +0300 Subject: [PATCH] Fix #159: add silent option to .golangci.example.yml --- .golangci.example.yml | 5 +++++ README.md | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.golangci.example.yml b/.golangci.example.yml index 5f7d5d88..49800b62 100644 --- a/.golangci.example.yml +++ b/.golangci.example.yml @@ -36,6 +36,11 @@ run: - ".*\\.my\\.go$" - lib/bad.go + # whether to hide "congrats" message if no issues were found, + # default is false (show "congrats" message by default). + # set this option to true to print nothing if no issues were found. + silent: true + # output configuration options output: diff --git a/README.md b/README.md index 6903cd68..155a63c8 100644 --- a/README.md +++ b/README.md @@ -454,6 +454,11 @@ run: - ".*\\.my\\.go$" - lib/bad.go + # whether to hide "congrats" message if no issues were found, + # default is false (show "congrats" message by default). + # set this option to true to print nothing if no issues were found. + silent: true + # output configuration options output: