Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 5939299

Browse files
authored
Update issue templates (#114)
* Update issue templates * chore: prettier
1 parent 285e021 commit 5939299

File tree

3 files changed

+94
-0
lines changed

3 files changed

+94
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: reichhartd
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
12+
**To Reproduce**
13+
Steps to reproduce the behavior:
14+
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Environment (please complete the following information):**
27+
28+
- Node.js version: [e.g. 16.14.2 LTS]
29+
- `eslint` version: [e.g. v8.13.0]
30+
- `@tokenstreet/eslint-plugin` version [e.g. v0.3.1]
31+
32+
**`eslintrc` file (please copy yours):**
33+
e.g.
34+
35+
```
36+
root: true
37+
parser: '@typescript-eslint/parser'
38+
parserOptions:
39+
project:
40+
- './tsconfig.json'
41+
plugins:
42+
- '@typescript-eslint'
43+
- simple-import-sort
44+
extends:
45+
- eslint:all
46+
- plugin:@typescript-eslint/all
47+
- plugin:eslint-plugin/all
48+
- prettier
49+
env:
50+
node: true
51+
es6: true
52+
overrides:
53+
- files:
54+
- tests/**/*.ts
55+
env:
56+
mocha: true
57+
```
58+
59+
**Additional context**
60+
Add any other context about the problem here.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
---
8+
9+
**Is your feature request related to a problem? Please describe.**
10+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
11+
12+
**Describe the solution you'd like**
13+
A clear and concise description of what you want to happen.
14+
15+
**Describe alternatives you've considered**
16+
A clear and concise description of any alternative solutions or features you've considered.
17+
18+
**Additional context**
19+
Add any other context or screenshots about the feature request here.

pull_request_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Heading
2+
3+
## TL;DR;
4+
5+
- Add
6+
- Things
7+
- That
8+
- Happened
9+
10+
## Checklist / Reminders:
11+
12+
> Note: This checklist must be completed before a pull request is reviewed and merged.
13+
14+
- [ ] Code-documentation is created / adapted
15+
- [ ] Tests are written / adapted

0 commit comments

Comments
 (0)