From aca0c06c923405d8796846ae9452c71f55ea13d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Anda=20Estensen?= Date: Fri, 8 Mar 2024 08:41:20 +0100 Subject: [PATCH] build: sort linters --- .golangci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 0343c4b4eb..b957b19c26 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -12,18 +12,18 @@ run: linters: disable-all: true enable: + - bidichk + - durationcheck + - exportloopref - goimports - gosimple - govet - ineffassign - misspell - - unconvert - - typecheck - - unused - staticcheck - - bidichk - - durationcheck - - exportloopref + - typecheck + - unconvert + - unused - whitespace # - structcheck # lots of false positives