summaryrefslogtreecommitdiffstats
path: root/.github/ISSUE_TEMPLATE/feature_request.yml
blob: 452e7f871002a63eae85818eff3b4f895f5ec8a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Feature Request
description: Submit a feature request
title: "feature request: "
labels: [enhancement]
body:
  - type: markdown
    attributes:
      value: |
        Before submitting a feature request, make sure to search for [existing requests](https://github.com/stevearc/conform.nvim/issues)
  - type: checkboxes
    attributes:
      label: Did you check existing requests?
      options:
        - label: I have searched the existing issues
          required: true
  - type: textarea
    attributes:
      label: Describe the feature
      description: A short summary of the feature you want
    validations:
      required: true
  - type: textarea
    attributes:
      label: Provide background
      description: Describe the reasoning behind why you want the feature.
      placeholder: I am trying to do X. My current workflow is Y.
    validations:
      required: false
  - type: dropdown
    attributes:
      label: What is the significance of this feature?
      options:
        - nice to have
        - strongly desired
        - cannot use this plugin without it
    validations:
      required: true
  - type: textarea
    attributes:
      label: Additional details
      description: Any additional information you would like to provide. Things you've tried, alternatives considered, examples from other plugins, etc.
    validations:
      required: false