Skip to content

Commit a2eb5c1

Browse files
JAORMXclaude
andcommitted
Enable parallel golangci-lint runners
Add --allow-parallel-runners flag to lint and lint-fix tasks to allow concurrent linter execution without lock contention. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ca54029 commit a2eb5c1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Taskfile.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ tasks:
8585
lint:
8686
desc: Run linter
8787
cmds:
88-
- golangci-lint run ./...
88+
- golangci-lint run --allow-parallel-runners ./...
8989

9090
lint-fix:
9191
desc: Run linter and fix issues
9292
cmds:
93-
- golangci-lint run --fix ./...
93+
- golangci-lint run --allow-parallel-runners --fix ./...
9494

9595
fmt:
9696
desc: Format code

0 commit comments

Comments
 (0)