Skip to content

Commit 333aaa7

Browse files
committed
chore: replace bug report template
1 parent f4493d6 commit 333aaa7

File tree

2 files changed

+95
-35
lines changed

2 files changed

+95
-35
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
name: Bug Report
2+
description: Report a bug with the lua-language-server
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: >
7+
**Please check for similar issues before continuing!**
8+
- type: dropdown
9+
id: client
10+
attributes:
11+
label: How are you using the lua-language-server?
12+
options:
13+
- Visual Studio Code Extension (sumneko.lua)
14+
- NeoVim
15+
- Kakoune
16+
- Command Line
17+
- Other
18+
validations:
19+
required: true
20+
- type: dropdown
21+
id: OS
22+
attributes:
23+
label: Which OS are you using?
24+
options:
25+
- Windows
26+
- Linux
27+
- MacOS
28+
- Windows WSL
29+
- Other
30+
validations:
31+
required: true
32+
- type: dropdown
33+
id: type
34+
attributes:
35+
label: What is the issue affecting?
36+
description: Please select all of the areas affected by this issue.
37+
multiple: true
38+
options:
39+
- Annotations
40+
- Type Checking
41+
- Completion
42+
- Diagnostics/Syntax Checking
43+
- Hover
44+
- Libraries
45+
- Formatting
46+
- Spell Checking
47+
- Plugins
48+
- Other
49+
validations:
50+
required: true
51+
- type: textarea
52+
id: expected
53+
attributes:
54+
label: Expected Behaviour
55+
description: What is the expected behaviour?
56+
validations:
57+
required: true
58+
- type: textarea
59+
id: actual
60+
attributes:
61+
label: Actual Behaviour
62+
description: What is actually happening that is an error?
63+
validations:
64+
required: true
65+
- type: textarea
66+
id: reproduction
67+
attributes:
68+
label: Reproduction steps
69+
description: >
70+
Please provide steps to reproduce the error. The more detail the better
71+
as it helps us fully understand the issue.
72+
value: |
73+
1. Go to '...'
74+
2. Click '...'
75+
3. See error '...'
76+
validations:
77+
required: true
78+
- type: textarea
79+
id: additional-notes
80+
attributes:
81+
label: Additional Notes
82+
description: >
83+
Please provide any additional notes, context,
84+
and media you have.
85+
- type: textarea
86+
id: log-file
87+
attributes:
88+
label: Log File
89+
description: >
90+
Please provide your log file. Refer to the wiki to find your log file:
91+
https://github.com/sumneko/lua-language-server/wiki/FAQ#where-can-i-find-the-log-file
92+
- type: markdown
93+
attributes:
94+
value: |
95+
Thank you very much for helping improve the language server! ❤️

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)