Skip to content

Commit 94388e5

Browse files
committed
Add LICENSE and CONTRIBUTING.md
1 parent 79dae13 commit 94388e5

2 files changed

Lines changed: 53 additions & 0 deletions

File tree

CONTRIBUTING.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Contributing Guidelines
2+
3+
**Do** follow [the seven rules of a great Git commit message][1].
4+
5+
**Do** follow [the Clojure Style Guide][2].
6+
7+
**Do** include tests for your change when appropriate.
8+
9+
**Do** ensure that the CI checks pass.
10+
11+
**Do** squash the commits in your PR to remove corrections
12+
irrelevant to the code history, once the PR has been reviewed.
13+
14+
**Do** feel free to pester the project maintainers about the PR if it
15+
hasn't been responded to. Sometimes notifications can be missed.
16+
17+
**Don't** overuse vertical whitespace; avoid multiple sequential blank
18+
lines.
19+
20+
**Don't** include more than one feature or fix in a single PR.
21+
22+
**Don't** include changes unrelated to the purpose of the PR. This
23+
includes changing the project version number, adding lines to the
24+
`.gitignore` file, or changing the indentation or formatting.
25+
26+
**Don't** open a new PR if changes are requested. Just push to the
27+
same branch and the PR will be updated.
28+
29+
[1]: https://chris.beams.io/posts/git-commit/#seven-rules
30+
[2]: https://github.com/bbatsov/clojure-style-guide

LICENSE

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Copyright (c) 2009-2010 Mark McGranaghan
2+
Copyright (c) 2009-2018 James Reeves
3+
4+
Permission is hereby granted, free of charge, to any person
5+
obtaining a copy of this software and associated documentation
6+
files (the "Software"), to deal in the Software without
7+
restriction, including without limitation the rights to use,
8+
copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the
10+
Software is furnished to do so, subject to the following
11+
conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
18+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
20+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23+
OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)