From a28d72e48c833a6011f10b4054d7def3671230d2 Mon Sep 17 00:00:00 2001 From: Juan Antonio Osorio Date: Mon, 9 Feb 2026 10:00:50 +0200 Subject: [PATCH] chore: enable parallel runners for golangci-lint This allows multiple golangci-lint instances to run simultaneously by preventing the default file lock acquisition at startup. Co-Authored-By: Claude Opus 4.6 (1M context) --- Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index b1f3303..76bfb51 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -25,4 +25,4 @@ tasks: lint: desc: Run linter cmds: - - golangci-lint run --timeout 5m0s --config .golangci.yml \ No newline at end of file + - golangci-lint run --allow-parallel-runners --timeout 5m0s --config .golangci.yml \ No newline at end of file