From a76276787f3f654321234784d914b9351c0a561a Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sat, 28 Dec 2024 18:19:19 +0100 Subject: [PATCH] feat: add timeout configuration to golangci-lint Sets a timeout of 5 minutes for golangci-lint to improve performance and prevent long-running linting processes. This change ensures that the linting process completes within a reasonable time frame, enhancing the development workflow. --- .golangci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.golangci.yml b/.golangci.yml index 9692e46..49d25da 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,2 +1,3 @@ run: allow-parallel-runners: true + timeout: 5m