lint: temporarily disable some linters

Andrey Nering created

Change summary

.golangci.yml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

Detailed changes

.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+'