@@ -7,13 +7,13 @@ appreciate any level you're willing to do.
7
7
8
8
Need some new functionality to help? You can let us know by opening an
9
9
[ issue] [ new issue ] . It's helpful to look through [ all issues] [ all issues ] in
10
- case its already being talked about.
10
+ case it's already being talked about.
11
11
12
12
## Bug Reports
13
13
14
14
Please let us know about what problems you run into, whether in behavior or
15
15
ergonomics of API. You can do this by opening an [ issue] [ new issue ] . It's
16
- helpful to look through [ all issues] [ all issues ] in case its already being
16
+ helpful to look through [ all issues] [ all issues ] in case it's already being
17
17
talked about.
18
18
19
19
### Reproducing Bugs
@@ -26,7 +26,7 @@ trees. You can verify your yaml file by the `git-fixture` command.
26
26
27
27
## Pull Requests
28
28
29
- Looking for an idea? Check our [ issues] [ issues ] . If it's look more open ended,
29
+ Looking for an idea? Check our [ issues] [ issues ] . If the issue looks open ended,
30
30
it is probably best to post on the issue how you are thinking of resolving the
31
31
issue so you can get feedback early in the process. We want you to be
32
32
successful and it can be discouraging to find out a lot of re-work is needed.
@@ -49,15 +49,18 @@ As a heads up, we'll be running your PR through the following gauntlet:
49
49
Not everything can be checked automatically though.
50
50
51
51
We request that the commit history gets cleaned up.
52
+
52
53
We ask that commits are atomic, meaning they are complete and have a single responsibility.
53
- PRs should tell a cohesive story, with test and refactor commits that keep the
54
+ A complete commit should build, pass tests, update documentation and tests, and not have dead code.
55
+
56
+ PRs should tell a cohesive story, with refactor and test commits that keep the
54
57
fix or feature commits simple and clear.
55
58
56
59
Specifically, we would encourage
57
60
- File renames be isolated into their own commit
58
- - Add tests in a commit before their feature or fix, showing the current behavior.
61
+ - Add tests in a commit before their feature or fix, showing the current behavior (i.e. they should pass) .
59
62
The diff for the feature/fix commit will then show how the behavior changed,
60
- making it clearer to reviewrs and the community and showing people that the
63
+ making the commit's intent clearer to reviewers and the community, and showing people that the
61
64
test is verifying the expected state.
62
65
- e.g. [ clap #5520 ] ( https://github.com/clap-rs/clap/pull/5520 )
63
66
0 commit comments