From 64eb0c84b3d909db47c5154c17d075f68b0c85ae Mon Sep 17 00:00:00 2001 From: nscuro Date: Sat, 9 Dec 2023 17:33:43 +0100 Subject: [PATCH] fix: remove format linters that require extra tooling this project should be simple to work with, and we don't want contributors (including ourselves) having to install exotic tools. Signed-off-by: nscuro --- .golangci.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 5292e43..d1d92a8 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -2,15 +2,6 @@ linters: enable: - asciicheck - errorlint - - gci - - gofumpt + - gofmt - gosec - wastedassign - -linters-settings: - gci: - sections: - - standard - - default - - prefix(github.com/CycloneDX) - custom-order: true