You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+18-5Lines changed: 18 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,13 @@ interact with the project and how to get involved in development as smoothly as
18
18
19
19
These things will make a PR more likely to be accepted:
20
20
21
+
- should address a single concern or task
22
+
- avoid bundling unrelated changes
21
23
- a well-described requirement
22
24
- tests for new code
23
25
- tests for old code!
24
26
- new code and tests follow the conventions in old code and tests
25
-
- a good commit message (see below)
27
+
- a good PR title and description (see below)
26
28
- all code must abide by [Go Code Review Comments](https://github.com/golang/go/wiki/CodeReviewComments)
27
29
- names should abide by [What's in a name](https://talks.golang.org/2014/names.slide#1)
28
30
- code must build on both Linux and Darwin, via plain `go build`
@@ -31,8 +33,19 @@ These things will make a PR more likely to be accepted:
31
33
32
34
In general, we will merge a PR once at least one maintainer has endorsed it. For substantial changes, more people may become involved, and you might get asked to resubmit the PR or divide the changes into more than one PR.
33
35
34
-
## Format of the Commit Message
36
+
## Format of the pull request
35
37
36
-
Limit the subject to 50 characters and write as the continuation of the sentence "If applied, this commit will ..."
37
-
Explain what and why in the body, if more than a trivial change; wrap it at 72 characters.
38
-
The [following article](https://cbea.ms/git-commit/#seven-rules) has some more helpful advice on documenting your work.
38
+
This project enforces that your pull request title match the
0 commit comments