Skip to content

Commit 09869cf

Browse files
tazjinVincent Ambo
authored and
Vincent Ambo
committed
docs: Add contribution guidelines
This document is intended to provide some information about how to contribute to the project, from basic sanity checks and code quality to information about how to structure git commits. These are the most common things that I encounter in pull requests sent to my projects.
1 parent fa5c12a commit 09869cf

File tree

1 file changed

+114
-0
lines changed

1 file changed

+114
-0
lines changed

CONTRIBUTING.md

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
Contribution Guidelines
2+
=======================
3+
4+
<!-- markdown-toc start - Don't edit this section. Run M-x markdown-toc-refresh-toc -->
5+
**Table of Contents**
6+
7+
- [Contribution Guidelines](#contribution-guidelines)
8+
- [Before making a change](#before-making-a-change)
9+
- [Commit messages](#commit-messages)
10+
- [Commit content](#commit-content)
11+
- [Code quality](#code-quality)
12+
- [Builds & tests](#builds--tests)
13+
14+
<!-- markdown-toc end -->
15+
16+
This is a loose set of "guidelines" for contributing to my projects.
17+
Please note that I will not accept any pull requests that don't follow
18+
these guidelines.
19+
20+
Also consider the [code of conduct](CODE_OF_CONDUCT.md). No really,
21+
you should.
22+
23+
## Before making a change
24+
25+
Before making a change, consider your motivation for making the
26+
change. Documentation updates, bug fixes and the like are *always*
27+
welcome.
28+
29+
When adding a feature you should consider whether it is only useful
30+
for your particular use-case or whether it is generally applicable for
31+
other users of the project.
32+
33+
When in doubt - just ask me!
34+
35+
## Commit messages
36+
37+
All commit messages should follow the style-guide used by the [Angular
38+
project][]. This means for the most part that your commit message
39+
should be structured like this:
40+
41+
```
42+
type(scope): Subject line with at most 68 a character length
43+
44+
Body of the commit message with an empty line between subject and
45+
body. This text should explain what the change does and why it has
46+
been made, *especially* if it introduces a new feature.
47+
48+
Relevant issues should be mentioned if they exist.
49+
```
50+
51+
Where `type` can be one of:
52+
53+
* `feat`: A new feature has been introduced
54+
* `fix`: An issue of some kind has been fixed
55+
* `docs`: Documentation or comments have been updated
56+
* `style`: Formatting changes only
57+
* `refactor`: Hopefully self-explanatory!
58+
* `test`: Added missing tests / fixed tests
59+
* `chore`: Maintenance work
60+
61+
And `scope` should refer to some kind of logical grouping inside of
62+
the project.
63+
64+
Please take a look at the existing commit log for examples.
65+
66+
## Commit content
67+
68+
Multiple changes should be divided into multiple git commits whenever
69+
possible. Common sense applies.
70+
71+
The fix for a single-line whitespace issue is fine to include in a
72+
different commit. Introducing a new feature and refactoring
73+
(unrelated) code in the same commit is not fine.
74+
75+
`git commit -a` is generally **taboo**.
76+
77+
In my experience making "sane" commits becomes *significantly* easier
78+
as developer tooling is improved. The interface to `git` that I
79+
recommend is [magit][]. Even if you are not yet an Emacs user, it
80+
makes sense to install Emacs just to be able to use magit - it is
81+
really that good.
82+
83+
For staging sane chunks on the command line with only git, consider
84+
`git add -p`.
85+
86+
## Code quality
87+
88+
This one should go without saying - but please ensure that your code
89+
quality does not fall below the rest of the project. This is of course
90+
very subjective, but as an example if you place code that throws away
91+
errors into a block in which errors are handled properly your change
92+
will be rejected.
93+
94+
In my experience there is a strong correlation between the visual
95+
appearance of a code block and its quality. This is a simple way to
96+
sanity-check your work while squinting and keeping some distance from
97+
your screen ;-)
98+
99+
## Builds & tests
100+
101+
Most of my projects are built using [Nix][] to avoid "build pollution"
102+
via the user's environment. If you have Nix installed and are
103+
contributing to a project that has a `default.nix`, consider using
104+
`nix-build` to verify that builds work correctly.
105+
106+
If the project has tests, check that they still work before submitting
107+
your change.
108+
109+
Both of these will usually be covered by Travis CI.
110+
111+
112+
[Angular project]: https://gist.github.com/stephenparish/9941e89d80e2bc58a153#format-of-the-commit-message
113+
[magit]: https://magit.vc/
114+
[Nix]: https://nixos.org/nix/

0 commit comments

Comments
 (0)