Skip to content

Commit a94bfbf

Browse files
committed
doc: add "Developing" section
Use a common section pulled from my other Go open source projects.
1 parent 8795590 commit a94bfbf

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,19 @@ So, my Vim config runs the following Unix pipeline in a vertical split:
285285
cat example.md | mdembed | mods
286286
```
287287

288+
## Developing
289+
290+
```bash
291+
# checks
292+
goimports -local "$(go list -m)" -w .
293+
go test ./...
294+
go vet ./...
295+
296+
# commit
297+
git add -A
298+
git commit -m "lang: support Ruby" # commit with prefix, imperative mood, hard-wrap 72 cols
299+
```
300+
288301
## License
289302

290303
MIT

0 commit comments

Comments
 (0)