We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a98f4f + 4a2b860 commit 104b45eCopy full SHA for 104b45e
1 file changed
Taskfile.yml
@@ -33,13 +33,13 @@ tasks:
33
lint:
34
desc: Run linting tools
35
cmds:
36
- - golangci-lint run ./...
+ - golangci-lint run --allow-parallel-runners ./...
37
- go vet ./...
38
39
lint-fix:
40
desc: Run linting tools, and apply fixes
41
42
- - golangci-lint run --fix ./...
+ - golangci-lint run --allow-parallel-runners --fix ./...
43
44
test:
45
desc: Run tests
@@ -63,7 +63,7 @@ tasks:
63
desc: Format the code
64
65
- go fmt ./...
66
- - golangci-lint run --fix
+ - golangci-lint run --allow-parallel-runners --fix
67
68
deps:
69
desc: Update dependencies
0 commit comments