Skip to content
This repository was archived by the owner on Dec 31, 2022. It is now read-only.

Commit 7873a3c

Browse files
authored
Merge pull request #3 from mike-north/issue-templates
Add github issue templates
2 parents 54697b4 + b08f260 commit 7873a3c

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
name: Bug report
3+
about: Something breaks while generating or using generated code
4+
5+
---
6+
7+
<!-- 🚨🚨🚨 READ THIS FIRST 🚨🚨🚨 -->
8+
<!--
9+
In order to help address issues quickly, we need you to make a best effort to complete the information below. Any incomplete bug reports will be closed.
10+
-->
11+
12+
13+
### Please paste the output of `ember -v` here
14+
<!-- example
15+
16+
ember-cli: 3.1.4
17+
node: 10.5.0
18+
os: darwin x64
19+
20+
-->
21+
22+
### Please paste the output of `./node_modules/.bin/tsc -v` here
23+
<!-- example
24+
25+
Version 2.9.2
26+
27+
-->
28+
29+
### Please paste your `tconfig.json` and `tslint.json` or `eslint.json` (if applicable) below
30+
31+
32+
<details><summary><b>My tsconfig.json</b></summary><pre>
33+
34+
<!-- Paste your tsconfig.json here -->
35+
36+
</pre></details>
37+
38+
<details><summary><b>My tslint.json or eslint.json</b></summary><pre>
39+
40+
<!-- Paste your tslint.json here -->
41+
42+
</pre></details>
43+
44+
### What are instructions we can follow to reproduce the issue?
45+
```sh
46+
ember new sample; cd ./sample # Create a new ember app
47+
ember install ember-cli-typescript # Set up typescript support
48+
49+
>> Your Instructions Go Here <<
50+
51+
```
52+
<!-- example: "Create a new route, add an action to it as shown in the following code sample" -->
53+
54+
55+
### Now about that bug. What did you expect to see?
56+
<!-- example: "I expected to be able to invoke my function foo() -->
57+
58+
### What happened instead?
59+
<!-- example: "TypeScript seems to think that there is no function foo()" -->
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
### Is your feature request related to a problem? Please describe.
8+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9+
10+
### Describe the solution you'd like
11+
A clear and concise description of what you want to happen.
12+
13+
### Describe alternatives you've considered
14+
A clear and concise description of any alternative solutions or features you've considered.
15+
16+
### Additional context
17+
Add any other context or screenshots about the feature request here.

0 commit comments

Comments
 (0)