Skip to content

Commit a88f11a

Browse files
committed
Add issue templates.
I've been getting a lot of issues lately with screenshots instead of text which isn't super helpful. Adding a couple of issue templates to help guide users towards more actionable issues.
1 parent 71421b3 commit a88f11a

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Formatting issue
3+
about: I don't like the output that the formatter produced.
4+
title: "[Formatting issue]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**What input code did you provide to the formatter?**
11+
12+
```dart
13+
// Include the code *as text* and not a screenshot.
14+
// Make sure to include the entire surrounding statement
15+
// or declaration since that can affect formatting.
16+
<your original code>
17+
```
18+
19+
**What output did the formatter produce?**
20+
21+
```dart
22+
// Include the actual output here.
23+
<formatter output>
24+
```
25+
26+
**What output did you expect or want the formatter to produce?**
27+
28+
Describe how you expected the formatter to format the code, ideally by showing what you had in mind as code.
29+
30+
```dart
31+
<what you hoped the formatter would output>
32+
```
33+
34+
**Anything else we should know?**
35+
36+
Thanks!
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Bug or feature request
3+
about: A bug, crash, feature request, or API change request
4+
title: "[Bug or feature request]"
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
If the bug is about the formatter producing output you don't like, please use the "Formatting issue" template.
11+
12+
**Describe the issue**
13+
14+
A clear and concise description of what the problem is...
15+
16+
**To Reproduce**
17+
18+
Steps to reproduce the behavior...
19+
20+
**Expected behavior**
21+
22+
A clear and concise description of what you expected to happen...

0 commit comments

Comments
 (0)