From 1dc21f3e612bce02609202f734e6151469b1ee55 Mon Sep 17 00:00:00 2001 From: xobotyi Date: Fri, 1 Nov 2019 16:13:10 +0300 Subject: [PATCH] feat: pull request template for features --- .github/PULL_REQUEST_TEMPLATE/feature_pr.md | 29 +++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/feature_pr.md diff --git a/.github/PULL_REQUEST_TEMPLATE/feature_pr.md b/.github/PULL_REQUEST_TEMPLATE/feature_pr.md new file mode 100644 index 0000000000..7d346d91bf --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/feature_pr.md @@ -0,0 +1,29 @@ +--- +name: Feature PR +about: Made something cool, what in your opinion lacks in this lib? +title: feat: +labels: enhancement +assignees: '' + +--- + +# Description + +Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List dependencies that are required for this change if it has any. + + +- [ ] Breaking change (this feature would cause existing functionality to not work as before) + +# Checklist + +- [ ] Make sure accordance to [Contributing Guide](https://github.com/streamich/react-use/blob/master/CONTRIBUTING.md) +- [ ] Perform a self-review of my own code +- [ ] Comment my code, particularly in hard-to-understand areas +- [ ] Write documentation +- [ ] Write tests +- [ ] Ensure test suite passes (`yarn test`) +- [ ] Achieve 100% LOC tests coverage +- [ ] Create story +- [ ] Update the `README.md` +- [ ] Make sure code lints (`yarn lint`) +- [ ] Make sure types are fine (`yarn lint:types`)