diff --git a/hack/golangci-strict.yaml b/hack/golangci-strict.yaml index b54a11f3b40..c5aa8399c04 100644 --- a/hack/golangci-strict.yaml +++ b/hack/golangci-strict.yaml @@ -21,6 +21,10 @@ issues: - linters: - stylecheck text: "ST1003: should not use underscores in Go names; func (Convert_.*_To_.*|SetDefaults_)" + # This check currently has some false positives (https://github.com/nunnatsa/ginkgolinter/issues/91). + - linters: + - ginkgolinter + text: use a function call in (Eventually|Consistently) linters: disable-all: false # in contrast to golangci.yaml, the default set of linters remains enabled diff --git a/hack/golangci.yaml b/hack/golangci.yaml index 280037377bf..f29986b714a 100644 --- a/hack/golangci.yaml +++ b/hack/golangci.yaml @@ -22,6 +22,10 @@ issues: - linters: - stylecheck text: "ST1003: should not use underscores in Go names; func (Convert_.*_To_.*|SetDefaults_)" + # This check currently has some false positives (https://github.com/nunnatsa/ginkgolinter/issues/91). + - linters: + - ginkgolinter + text: use a function call in (Eventually|Consistently) linters: disable-all: true # not disabled in golangci-strict.yaml