From 032301e041b021e2f9e54daadd03e43c350e7700 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Mon, 2 Mar 2026 21:25:21 +0000 Subject: [PATCH] chore(lint): update golangci-lint configuration Switch default linters to standard and retain misspell enablement, removing explicit enables for govet, errcheck, staticcheck, ineffassign, unused, and gosimple. --- .golangci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index dfd48dc..7a78f1a 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,14 +1,8 @@ version: "2" linters: - default: none + default: standard enable: - - govet - - errcheck - - staticcheck - - ineffassign - - unused - - gosimple - misspell settings: