-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To help organize any issues related to __bugs__ or __suggested features__, I've included issue templates. This will make response times better, and bugs easier to fix!
- Loading branch information
1 parent
59a3471
commit 5940a42
Showing
2 changed files
with
57 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,40 @@ | ||
--- | ||
name: Bug report | ||
about: Thank you for sharing this bug report! Please fill out the template so that | ||
the error is clearer, and quicker to fix :D | ||
title: "[BUG]" | ||
labels: '' | ||
assignees: eduardoleao052 | ||
|
||
--- | ||
|
||
## Describe the bug | ||
A clear and concise description of what the bug is. | ||
|
||
## Example | ||
### Code | ||
A small code snippet that exemplifies the bug: | ||
```typescript | ||
function doesntWork(arg1, arg2) { | ||
// Some logic... | ||
return result; | ||
} | ||
``` | ||
|
||
### Resulting Error (optional) | ||
A ctrl+c ctrl+v of your Stack Trace: | ||
``` | ||
Error: variable 'a' is declared but never used. | ||
``` | ||
|
||
## To Reproduce | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Run '....' | ||
3. See error | ||
|
||
## Expected behavior | ||
A clear and concise description of what you expected to happen. | ||
|
||
## Screenshots (Optional) | ||
If applicable, add screenshots to help explain your problem. |
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,17 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project! Any feature, change or fix is much appreciated. | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |