From 951afb6189a85b02f6e0fa5aeff1c608e16b5fc8 Mon Sep 17 00:00:00 2001 From: Oleg Butuzov Date: Thu, 13 May 2021 05:46:18 +0300 Subject: [PATCH] fix: example config yaml Minor fix, remove one tab character in the `.golangci.example.yaml` which breaks yaml parsing (in the case if .golangci.example.yaml used to automate golangci-lint testing). --- .golangci.example.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.golangci.example.yml b/.golangci.example.yml index 8e58deda502b..37432a621425 100644 --- a/.golangci.example.yml +++ b/.golangci.example.yml @@ -227,7 +227,7 @@ linters-settings: underef: # whether to skip (*x).method() calls where x is a pointer receiver (default true) skipRecvDeref: true - unnamedResult: + unnamedResult: # whether to check exported functions checkExported: true