diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug-report.yml | 95 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 35 |
2 files changed, 95 insertions, 35 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! ❤️ diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index b55b160f..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Environment (please complete the following information):** - - OS: [e.g. Windows, macOS, Ubuntu] - - Is WSL remote? - - Client: [e.g. VSCode, neovim] - -**Additional context** -Add any other context about the problem here. - -**Provide logs** -Find the log at https://github.com/sumneko/lua-language-server/wiki/Default-log-path |