fix: use yaml, not yml YAML file extension

This commit is contained in:
Barrett Ruth 2026-02-02 22:14:04 -05:00
parent 0ae692bce7
commit 877b7f7fe7
6 changed files with 17 additions and 21 deletions

View file

@ -1,4 +1,4 @@
title: "Q&A" title: 'Q&A'
labels: [] labels: []
body: body:
- type: markdown - type: markdown

View file

@ -1,29 +1,31 @@
name: Bug Report name: Bug Report
description: Report a bug description: Report a bug
title: "bug: " title: 'bug: '
labels: [bug] labels: [bug]
body: body:
- type: checkboxes - type: checkboxes
attributes: attributes:
label: Prerequisites label: Prerequisites
options: options:
- label: I have searched [existing issues](https://github.com/barrettruth/diffs.nvim/issues) - label:
I have searched [existing
issues](https://github.com/barrettruth/diffs.nvim/issues)
required: true required: true
- label: I have updated to the latest version - label: I have updated to the latest version
required: true required: true
- type: textarea - type: textarea
attributes: attributes:
label: "Neovim version" label: 'Neovim version'
description: "Output of `nvim --version`" description: 'Output of `nvim --version`'
render: text render: text
validations: validations:
required: true required: true
- type: input - type: input
attributes: attributes:
label: "Operating system" label: 'Operating system'
placeholder: "e.g. Arch Linux, macOS 15, Ubuntu 24.04" placeholder: 'e.g. Arch Linux, macOS 15, Ubuntu 24.04'
validations: validations:
required: true required: true
@ -47,8 +49,8 @@ body:
- type: textarea - type: textarea
attributes: attributes:
label: "Health check" label: 'Health check'
description: "Output of `:checkhealth diffs`" description: 'Output of `:checkhealth diffs`'
render: text render: text
- type: textarea - type: textarea

View file

@ -1,13 +1,15 @@
name: Feature Request name: Feature Request
description: Suggest a feature description: Suggest a feature
title: "feat: " title: 'feat: '
labels: [enhancement] labels: [enhancement]
body: body:
- type: checkboxes - type: checkboxes
attributes: attributes:
label: Prerequisites label: Prerequisites
options: options:
- label: I have searched [existing issues](https://github.com/barrettruth/diffs.nvim/issues) - label:
I have searched [existing
issues](https://github.com/barrettruth/diffs.nvim/issues)
required: true required: true
- type: textarea - type: textarea

View file

@ -14,4 +14,4 @@ repos:
hooks: hooks:
- id: prettier - id: prettier
name: prettier name: prettier
files: \.(md|toml|yaml|sh)$ files: \.(md|toml|yaml|yml|sh)$

View file

@ -5,13 +5,5 @@
"useTabs": false, "useTabs": false,
"trailingComma": "none", "trailingComma": "none",
"semi": false, "semi": false,
"singleQuote": true, "singleQuote": true
"overrides": [
{
"files": ["**/*.md"],
"options": {
"parser": "markdown"
}
}
]
} }