We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e3b4dc commit 9d4d42aCopy full SHA for 9d4d42a
1 file changed
README.md
@@ -69,9 +69,14 @@ for a PTY interface.
69
## Developing
70
71
```bash
72
-go test ./... # run tests
73
-go vet ./... # static checks
74
-goimports -local "$(go list -m)" -w . # format imports
+# checks
+goimports -local "$(go list -m)" -w .
+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
80
```
81
82
## License
0 commit comments