Skip to content

Commit

Permalink
Merge branch 'master' into required-optional-keys
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrwitek committed Apr 28, 2019
2 parents cad3570 + df17c85 commit 2bc48ad
Show file tree
Hide file tree
Showing 4 changed files with 90 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
name: Bug report
about: Create a report to help us improve

---

## Description
<!-- A clear description of what the bug is -->

## Steps to Reproduce
<!--
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
-->

## Expected behavior
<!-- A clear description of what you expected to happen -->

## Suggested solution(s)
<!-- How could we solve this bug. What changes would need to be made -->

## Project Dependencies
- Utility-Types Version: X.X.X
- TypeScript Version: X.X.X
- tsconfig.json:
<!-- Paste contents of your tsconfig.json here -->

## Environment (optional)
<!-- Fill if you think it's relevant to your issue -->
- Browser and Version: XXX
- OS: XXX
- Node Version: XXX
- Package Manager and Version: XXX
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/custom.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Question
about: Have a question? Checkout our gitter channel.

---

First of all checkout our gitter channel: https://gitter.im/react-redux-typescript-guide/utility-types

Then please use Stack Overflow or other resources for help resolving your specific use-cases.

The only exceptions to use issue tracker for questions would be for some unusual "special cases".
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project

---

## Is your feature request related to a real problem or use-case?
<!-- A clear description of your problem or use-case-->

## Describe a solution including usage in code example
<!-- A clear description of the solution including usage with complete code examples, nicely formatted with "```ts" tags (especially if that's a new api proposal) -->

## Who does this impact? Who is this for?
<!-- Who is this for? All users? TypeScript users? Yourself? People using X, Y, Z, etc.? -->

## Describe alternatives you've considered (optional)
<!-- A clear and concise description of any alternative solutions or workaround you've considered -->

## Additional context (optional)
<!-- Add any other stuff you need, like links or related issues -->
23 changes: 23 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!-- Thank you for your contribution! :thumbsup: -->
<!-- Please makes sure that these checkboxes are checked before submitting your PR, thank you! -->

## Description
<!-- Example: Added error property support to `action` API -->

## Related issues:
- Resolved #XXX

## Checklist

* [ ] I have read [CONTRIBUTING.md](../CONTRIBUTING.md)
* [ ] I have linked all related issues above
* [ ] I have rebased my branch

For bugfixes:
* [ ] I have added at least one unit test to confirm the bug have been fixed
* [ ] I have checked and updated TOC and API Docs when necessary

For new features:
* [ ] I have added entry in TOC and API Docs
* [ ] I have added a short example in API Docs to demonstrate new usage
* [ ] I have added type unit tests with `dts-jest`

0 comments on commit 2bc48ad

Please sign in to comment.