Skip to content

Commit 34432c4

Browse files
committed
chore: templates for issues and features
1 parent 2712f13 commit 34432c4

File tree

2 files changed

+110
-0
lines changed

2 files changed

+110
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: 🐛 Bug Report
2+
description: File a bug report related to syntax highlighting
3+
title: "Bug: "
4+
labels: ["bug"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thank you for taking the time to fill out a bug report.
11+
12+
> **Important**
13+
> Remember to check that you are on the latest version of the extension (or indicate pre-release if applicable).
14+
15+
- type: dropdown
16+
id: type-of-issue
17+
attributes:
18+
label: |
19+
What type of issues are you dealing with?
20+
21+
> **Note**
22+
> Coloring inconsistencies w/ `language-mcfunction` are not always considered bugs
23+
multiple: true
24+
options:
25+
- Incorrect highlighting
26+
- Scope leak (breaking highlighting later in the file)
27+
- Coloring or scope inconsistency
28+
- Alternate syntax related (likely "Won't Fix")
29+
- Other (please specify)
30+
31+
- type: textarea
32+
id: what-happened
33+
attributes:
34+
label: What happened?
35+
description: |
36+
What did you expect to happen? What happened instead?
37+
Include screenshots to explain your problem visually.
38+
placeholder: Tell us what you see!
39+
validations:
40+
required: true
41+
42+
- type: dropdown
43+
id: platform
44+
attributes:
45+
label: Which text editors are you seeing the problem on?
46+
multiple: true
47+
options:
48+
- VSCode
49+
- Sublime Text
50+
- Other (please specify above)
51+
validations:
52+
required: true
53+
54+
- type: textarea
55+
id: code-snippets
56+
attributes:
57+
label: Include a code snippet
58+
description: Put the exact code snippet used to produce the bug
59+
placeholder: |
60+
say my buggy command
61+
value: |
62+
execute as @a run say buggy command executed
63+
render: mcfunction
64+
validations:
65+
required: false
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: "💡 Feature Request"
2+
description: Create a ticket for a new feature request
3+
title: "Request: "
4+
labels: ["feature-request"]
5+
6+
body:
7+
- type: textarea
8+
id: summary
9+
attributes:
10+
label: "Summary"
11+
description: Provide a brief explanation of your feature request
12+
placeholder: Describe in a few lines your feature request
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: basic_example
18+
attributes:
19+
label: "Basic Example"
20+
description: Indicate here some basic examples of your feature.
21+
placeholder: A few specific words about your feature request.
22+
validations:
23+
required: true
24+
25+
- type: dropdown
26+
id: platform
27+
attributes:
28+
label: Is this specific to a text editor?
29+
multiple: true
30+
options:
31+
- VSCode
32+
- Sublime Text
33+
- Other (please specify above)
34+
validations:
35+
required: false
36+
37+
- type: textarea
38+
id: other-info
39+
attributes:
40+
label: "Other Info"
41+
description: Any drawbacks or other details of your feature request ?
42+
placeholder: Other thoughts you think might be **Important**
43+
render: bash
44+
validations:
45+
required: false

0 commit comments

Comments
 (0)