From 7f1ec1420ef3fe09394c82d72a0b031b2e40d6c1 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Fri, 29 Aug 2025 14:40:35 -0300 Subject: [PATCH] lint: temporarily disable some linters --- .golangci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 929cb0ac99f30c1316f6e08a9ebf7a3909594a5c..136f67403672e20172fd92a5ef1999a208f90e9c 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -4,27 +4,27 @@ run: linters: enable: - bodyclose - - exhaustive - - goconst + # - exhaustive + # - goconst - godot - gomoddirectives - goprintffuncname - gosec - misspell - nakedret - - nestif + # - nestif - nilerr - noctx - nolintlint - prealloc - - revive + # - revive - rowserrcheck - sqlclosecheck - tparallel - unconvert - unparam - whitespace - - wrapcheck + # - wrapcheck exclusions: rules: - text: '(slog|log)\.\w+'