Skip to content

Commit 9d4d42a

Browse files
committed
doc: use common style
Use a common style for this section that I use in my other Go open source projects.
1 parent 1e3b4dc commit 9d4d42a

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,14 @@ for a PTY interface.
6969
## Developing
7070

7171
```bash
72-
go test ./... # run tests
73-
go vet ./... # static checks
74-
goimports -local "$(go list -m)" -w . # format imports
72+
# checks
73+
goimports -local "$(go list -m)" -w .
74+
go test ./...
75+
go vet ./...
76+
77+
# commit
78+
git add -A
79+
git commit -m "proc: add new feature" # commit with prefix, imperative mood, hard-wrap 72 cols
7580
```
7681

7782
## License

0 commit comments

Comments
 (0)