From 64c2ff8ddf7d546860a7ac372af5876e10164e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Anda=20Estensen?= Date: Sat, 6 Jan 2024 07:25:42 +0100 Subject: [PATCH] chore: sort linters in golangci-lint config (#18958) --- .golangci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 11259002d8..e9714ba581 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -21,12 +21,12 @@ build-tags: linters: disable-all: true enable: - - errcheck - dogsled + - errcheck - exportloopref + - gci - goconst - gocritic - - gci - gofumpt - gosec - gosimple @@ -35,11 +35,11 @@ linters: - misspell - nakedret - nolintlint - - staticcheck - revive + - staticcheck - stylecheck - - typecheck - thelper + - typecheck - unconvert - unused