From 9d6ce7c5ddf488dbf7d6e292272e4df41939242d Mon Sep 17 00:00:00 2001 From: Yati Padia Date: Sat, 10 Jul 2021 09:21:00 +0530 Subject: [PATCH] ci: disable forbidigo linter This commit disables the forbidigo linter as this linter forbids the use of fmt.Printf but we need to use it in various part of our codebase. Updates: #1586 Signed-off-by: Yati Padia --- scripts/golangci.yml.in | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/golangci.yml.in b/scripts/golangci.yml.in index dfdada23d..8f1fb375b 100644 --- a/scripts/golangci.yml.in +++ b/scripts/golangci.yml.in @@ -169,3 +169,4 @@ linters: - exhaustivestruct # TODO: enable goerr113, see: https://github.com/ceph/ceph-csi/issues/1227 - goerr113 + - forbidigo