Skip to content

Commit 104b45e

Browse files
authored
Merge pull request #64 from StacklokLabs/chore/enable-parallel-lint-runners
Enable parallel runners for golangci-lint
2 parents 7a98f4f + 4a2b860 commit 104b45e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Taskfile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ tasks:
3333
lint:
3434
desc: Run linting tools
3535
cmds:
36-
- golangci-lint run ./...
36+
- golangci-lint run --allow-parallel-runners ./...
3737
- go vet ./...
3838

3939
lint-fix:
4040
desc: Run linting tools, and apply fixes
4141
cmds:
42-
- golangci-lint run --fix ./...
42+
- golangci-lint run --allow-parallel-runners --fix ./...
4343

4444
test:
4545
desc: Run tests
@@ -63,7 +63,7 @@ tasks:
6363
desc: Format the code
6464
cmds:
6565
- go fmt ./...
66-
- golangci-lint run --fix
66+
- golangci-lint run --allow-parallel-runners --fix
6767

6868
deps:
6969
desc: Update dependencies

0 commit comments

Comments
 (0)