-
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into required-optional-keys
- Loading branch information
Showing
4 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |