summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/bug-report.yml
diff options
context:
space:
mode:
authorcarsakiller <carsakiller@gmail.com>2022-07-31 13:01:57 -0400
committercarsakiller <carsakiller@gmail.com>2022-07-31 13:01:57 -0400
commit333aaa7635cbc72be5c4d7ec5b8dabae46c4d14a (patch)
tree53b3cfc68e9f35e7f9ced366ed7106ad5a8e9edd /.github/ISSUE_TEMPLATE/bug-report.yml
parentf4493d69bd682307d88599804723543bd25b17df (diff)
downloadlua-language-server-333aaa7635cbc72be5c4d7ec5b8dabae46c4d14a.zip
chore: replace bug report template
Diffstat (limited to '.github/ISSUE_TEMPLATE/bug-report.yml')
-rw-r--r--.github/ISSUE_TEMPLATE/bug-report.yml95
1 files changed, 95 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
new file mode 100644
index 00000000..0451389e
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -0,0 +1,95 @@
+name: Bug Report
+description: Report a bug with the lua-language-server
+body:
+ - type: markdown
+ attributes:
+ value: >
+ **Please check for similar issues before continuing!**
+ - type: dropdown
+ id: client
+ attributes:
+ label: How are you using the lua-language-server?
+ options:
+ - Visual Studio Code Extension (sumneko.lua)
+ - NeoVim
+ - Kakoune
+ - Command Line
+ - Other
+ validations:
+ required: true
+ - type: dropdown
+ id: OS
+ attributes:
+ label: Which OS are you using?
+ options:
+ - Windows
+ - Linux
+ - MacOS
+ - Windows WSL
+ - Other
+ validations:
+ required: true
+ - type: dropdown
+ id: type
+ attributes:
+ label: What is the issue affecting?
+ description: Please select all of the areas affected by this issue.
+ multiple: true
+ options:
+ - Annotations
+ - Type Checking
+ - Completion
+ - Diagnostics/Syntax Checking
+ - Hover
+ - Libraries
+ - Formatting
+ - Spell Checking
+ - Plugins
+ - Other
+ validations:
+ required: true
+ - type: textarea
+ id: expected
+ attributes:
+ label: Expected Behaviour
+ description: What is the expected behaviour?
+ validations:
+ required: true
+ - type: textarea
+ id: actual
+ attributes:
+ label: Actual Behaviour
+ description: What is actually happening that is an error?
+ validations:
+ required: true
+ - type: textarea
+ id: reproduction
+ attributes:
+ label: Reproduction steps
+ description: >
+ Please provide steps to reproduce the error. The more detail the better
+ as it helps us fully understand the issue.
+ value: |
+ 1. Go to '...'
+ 2. Click '...'
+ 3. See error '...'
+ validations:
+ required: true
+ - type: textarea
+ id: additional-notes
+ attributes:
+ label: Additional Notes
+ description: >
+ Please provide any additional notes, context,
+ and media you have.
+ - type: textarea
+ id: log-file
+ attributes:
+ label: Log File
+ description: >
+ Please provide your log file. Refer to the wiki to find your log file:
+ https://github.com/sumneko/lua-language-server/wiki/FAQ#where-can-i-find-the-log-file
+ - type: markdown
+ attributes:
+ value: |
+ Thank you very much for helping improve the language server! ❤️