Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Bug report
description: Create a report to help us improve
title: "[Bug] "
labels:
- bug
assignees: unknowIfGuestInDream
body:
- type: input
id: vscode-version
attributes:
label: Which version of VS Code are you using?
description: You can find this in Help > About

- type: input
id: extension-version
attributes:
label: Which version of the extension are you using?
description: Check in Extensions panel

- type: checkboxes
id: operating-systems
attributes:
label: Which operating system are you using?
description: You may select more than one. Don't select anything if it's not about the environment.
options:
- label: macOS
- label: Windows
- label: Linux

- type: input
id: version
attributes:
label: Version since
description: Version since when the behavior is seen [e.g. 1.0.0]

- type: textarea
id: description
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
validations:
required: true

- type: textarea
id: reproduce-context
attributes:
label: To Reproduce
description: Steps to reproduce the behavior.

- type: textarea
id: expected-context
attributes:
label: Expected behavior
placeholder: A clear and concise description of what you expected to happen.

- type: textarea
id: screenshots-context
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain your problem.

- type: textarea
id: additional-context
attributes:
label: Additional context
description: If you are not reporting something obvious, a minimal reproduction and related log is required.
placeholder: Add any other context about the problem here. Especially if the issue occurs in certain OS, browser or configuration.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Feature request
description: Suggest an idea for this project
title: "[Feature Request] "
labels:
- enhancement
assignees: unknowIfGuestInDream
body:
- type: textarea
id: feature
attributes:
label: Describe the feature
description: Is your feature request related to a problem? Please describe.
placeholder: A clear and concise description of what the feature is, and what it will enhance or solve. Ex. I'm always frustrated when [...]

- type: textarea
id: solution-context
attributes:
label: Describe the solution you'd like
placeholder: A clear and concise description of what you want to happen.

- type: textarea
id: considered-context
attributes:
label: Describe alternatives you've considered
placeholder: A clear and concise description of any alternative solutions or features you've considered.

- type: textarea
id: additional-context
attributes:
label: Additional context
placeholder: Add any other context or screenshots about the feature request here.
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/general-question.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: General question
description: Ask a question here
title: "[Question] "
labels:
- question
assignees: unknowIfGuestInDream
body:
- type: checkboxes
id: checklist
attributes:
label: Checklist
description: |-
Make sure that you follow these statements.
options:
- label: I am following the docs and I am sure I have tried searching for the problem.
required: true

- type: textarea
id: question
attributes:
label: Describe the question
description: What's it for
placeholder: write your question here
validations:
required: true
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.vscode/**
.vscode-test/**
.vscode-test.json
.github/**
src/**
scripts/**
Expand Down