Skip to content

Commit

Permalink
Add contributing guidelines.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Sep 20, 2017
1 parent 6a0f2ce commit 7c7b6e5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
CONTRIBUTING.md
Makefile
docs/
examples/
Expand Down
20 changes: 20 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Contributing

### Tests

The test suite is located in the `test/` directory. All new features are
expected to have corresponding test cases with complete code coverage. Patches
that increse test coverage are happily accepted.

Ensure that the test suite passes by executing:

```bash
$ make test
```

Coverage reports can be viewed by executing:

```bash
$ make test-cov
$ make view-cov
```

0 comments on commit 7c7b6e5

Please sign in to comment.