From 35f0106ca50f74b6e2e539ae2e5096cdb1a97d5e Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sat, 28 Dec 2024 17:15:31 +0100 Subject: [PATCH] chore(golangci): increase timeout to 5 minutes Set the timeout for golangci-lint to 5 minutes to allow for longer linting processes, improving the reliability of the linting checks in larger projects. --- .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 -- 2.52.0