From c939fb6563b64a7a00a0cdc68d9d9907277a83cb Mon Sep 17 00:00:00 2001 From: 0x524a Date: Tue, 2 Dec 2025 23:40:51 -0500 Subject: [PATCH] chore: refine golangci-lint configuration by removing unused linters - Removed the gosimple and stylecheck linters from the golangci-lint configuration to streamline the linter setup and focus on more relevant checks. --- .golangci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index a1286f9..734e984 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -11,7 +11,6 @@ linters: - govet - staticcheck - unused - - gosimple - ineffassign - misspell - unconvert @@ -26,7 +25,6 @@ linters: - gocognit - nakedret - prealloc - - stylecheck - whitespace - wrapcheck - errname