-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Edazpotato <edazpotato@gmail.com>
- Loading branch information
Showing
7 changed files
with
99 additions
and
1,605 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,37 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help improve POTATO | ||
title: "[BUG] " | ||
labels: bug | ||
assignees: edazpotato | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to a guild that '...' | ||
2. Choose a channel that '....' | ||
3. Use the command '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. Windows] | ||
- Discord Version [e.g. stable, canary] | ||
- Browser [e.g. chrome, firefox] (if applicable) | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Discord Version [e.g. stable, canary] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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 POTATO | ||
title: "[FEATURE] " | ||
labels: enhancement | ||
assignees: edazpotato | ||
|
||
--- | ||
|
||
**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. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
16 changes: 16 additions & 0 deletions
16
.github/ISSUE_TEMPLATE/offensive-material-removal-request.md
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,16 @@ | ||
--- | ||
name: Offensive material removal request | ||
about: Request to have offensive content removed from POTATO | ||
title: "[RfRoOC] " | ||
labels: '' | ||
assignees: edazpotato | ||
|
||
--- | ||
|
||
# RfRoOC | ||
|
||
## What | ||
What is offensive? Please provide screenshots. | ||
|
||
## Why | ||
Why is this offensive to you? |
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,8 @@ | ||
# Code of conduct | ||
|
||
Be a good person. | ||
|
||
|
||
## Reporting dodgy stuff | ||
|
||
If you see something dodgy, hit me up on discord @ [Edaz#5671 (569414372959584256)](https://discord.gg/mzR7eeZ). |
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,16 @@ | ||
# Rules for contributors | ||
- Indent with tabs | ||
- Trailing commas where it makes sense (e.g. arrays) | ||
- Use semicolons | ||
- use the `function` for functions, use fat arrow functions (`() => {}`) for callbacks. | ||
- Speaking of fat arrow functions, always add parentheses even if there is only one argument | ||
- Speaking of arguments, always name them even if they don't get used (e.g. `(arg1, arg2)=>console.log(arg2)` rather than `(_, arg2)=>console.log(arg2)`) | ||
- Don't use libraries for simple tasks that can be easily implemnted manualy | ||
- Always use the unstable branch of everything - I want new stuff as soon as possible | ||
- Remember to add new enviroment variables to `example.env` | ||
- Features > Content | ||
- Write proper types / avoid using `any` | ||
- Test on production | ||
- Don't write tests | ||
- Write strings for the POTATO bot as first person from POTATO's perspective, otherwise write as first person from your perspective (don't write 'we', 'our', 'us' - it sound evil and corprate). | ||
- Refer to POTATO as POTATO no 'the bot' |
Oops, something went wrong.