1_language_support.yml

 1name: Language Support
 2description: Request language support
 3title: "<name_of_language> support"
 4labels:
 5  [
 6    "admin read",
 7    "triage",
 8    "enhancement",
 9    "language",
10    "unsupported language",
11    "potential extension",
12  ]
13body:
14  - type: checkboxes
15    attributes:
16      label: Check for existing issues
17      description: Check the backlog of issues to reduce the chances of creating duplicates; if an issue already exists, place a `+1` (👍) on it.
18      options:
19        - label: Completed
20          required: true
21  - type: input
22    attributes:
23      label: Language
24      description: What language do you want support for?
25      placeholder: HTML
26    validations:
27      required: true
28  - type: input
29    attributes:
30      label: Tree Sitter parser link
31      description: If applicable, provide a link to the appropriate tree sitter parser.  Look here first - https://tree-sitter.github.io/tree-sitter/#available-parsers
32      placeholder: https://github.com/tree-sitter/tree-sitter-html
33    validations:
34      required: false
35  - type: input
36    attributes:
37      label: Language server link
38      description: If applicable, provide a link to the appropriate language server.  Look here first - https://microsoft.github.io/language-server-protocol/implementors/servers/
39      placeholder: https://github.com/Microsoft/vscode/tree/main/extensions/html-language-features/server
40    validations:
41      required: false
42  - type: textarea
43    attributes:
44      label: Misc notes
45      description: Provide any additional things the team should consider when adding support for this language
46    validations:
47      required: false