Skip to content
This repository has been archived by the owner on Mar 20, 2022. It is now read-only.

Commit

Permalink
Add Issue & PR Templates
Browse files Browse the repository at this point in the history
  • Loading branch information
paularmstrong committed May 23, 2016
1 parent d198333 commit 66bfee4
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
node_modules
dist
lib
npm-debug.log
25 changes: 25 additions & 0 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Problem

A short explanation of your problem or use-case is helpful!

**Input**

Here's how I'm using normalizr:

```js
// Add as much relevant code and input as possible
// const mySchema = new Schema('myschema');
// normalize({ .../* fill in some input */ }, mySchema);
```

**Output**

Here's what I expect to see when I run the above:

```js
// What you expect to see after running normalizr with your provided input, schema, etc (above)
// {
// result: [1, 2],
// entities: { ... }
// }
```
13 changes: 13 additions & 0 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Problem

Explain the problem that this pull request aims to resolve.

# Solution

Explain your approach. Sometimes it helps to justify your approach against some others that you didn't choose to explain why yours is better.

# TODO

*Fill in the following:*

- [ ] Add & Update Tests

0 comments on commit 66bfee4

Please sign in to comment.