From 5c9f63badae071ffa5f53bec24b8029bbf1e6d01 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Wed, 3 Aug 2022 12:48:03 +0530 Subject: [PATCH] ci: disable nosnakecase static check All the CSI spec imports are having snakecase we cannot fix it, instead of disabling all imports skipping the nosnakecase static check. Signed-off-by: Madhu Rajanna --- scripts/golangci.yml.in | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/golangci.yml.in b/scripts/golangci.yml.in index d73ff8917..30e176052 100644 --- a/scripts/golangci.yml.in +++ b/scripts/golangci.yml.in @@ -169,6 +169,7 @@ linters: - funlen - testpackage - exhaustivestruct + - nosnakecase # This requires extra addition of unnecessary code. Hence, we # prefer to disable this linter. But, it can be enabled if we # have better resolution. For more details check the