Skip to content

Commit 03fe7ad

Browse files
authored
chore: rename 'lint' task to 'vet' (#44)
1 parent 39c8c6d commit 03fe7ad

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
- name: Install dependencies
2323
run: task dep
2424
- name: Run linters
25-
run: task lint
25+
run: task vet
2626
- name: Run tests
2727
run: task test

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ task dep
1414
task
1515
```
1616

17-
## Tests, linters and format
17+
## Test
1818

1919
```sh
20-
task lint
20+
task vet # linters
2121
task test
22-
task fmt
22+
task fmt # formatters
2323
```
2424

2525
## Build

Taskfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tasks:
3030
# Runs `go fmt` before finishing.
3131
cmd: golines -m 80 --shorten-comments -w .
3232

33-
lint:
33+
vet:
3434
summary: "Run linters"
3535
cmds:
3636
- go vet ./...

0 commit comments

Comments
 (0)