From 41091782a37a6794ab86d1223b8053692105ca14 Mon Sep 17 00:00:00 2001 From: Andrea V <1577639+karimodm@users.noreply.github.com> Date: Wed, 8 Nov 2023 16:39:18 +0100 Subject: [PATCH] Disable typegroupingcheck by default --- .github/workflows/golangci-lint.yml | 2 +- .golangci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index fc84086ff..5ca39435b 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -36,4 +36,4 @@ jobs: skip-cache: true version: latest install-mode: goinstall - args: --timeout=10m \ No newline at end of file + args: --timeout=10m --enable typegroupingcheck diff --git a/.golangci.yml b/.golangci.yml index 2a12b2556..535edcf10 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -43,7 +43,7 @@ linters: disable-all: true # Enable specific linter enable: - - typegroupingcheck + #- typegroupingcheck - errcheck - gosimple - govet