fix: use yaml, not yml YAML file extension
This commit is contained in:
parent
0ae692bce7
commit
877b7f7fe7
6 changed files with 17 additions and 21 deletions
|
|
@ -1,4 +1,4 @@
|
|||
title: "Q&A"
|
||||
title: 'Q&A'
|
||||
labels: []
|
||||
body:
|
||||
- type: markdown
|
||||
|
|
@ -1,29 +1,31 @@
|
|||
name: Bug Report
|
||||
description: Report a bug
|
||||
title: "bug: "
|
||||
title: 'bug: '
|
||||
labels: [bug]
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Prerequisites
|
||||
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
|
||||
- label: I have updated to the latest version
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Neovim version"
|
||||
description: "Output of `nvim --version`"
|
||||
label: 'Neovim version'
|
||||
description: 'Output of `nvim --version`'
|
||||
render: text
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
attributes:
|
||||
label: "Operating system"
|
||||
placeholder: "e.g. Arch Linux, macOS 15, Ubuntu 24.04"
|
||||
label: 'Operating system'
|
||||
placeholder: 'e.g. Arch Linux, macOS 15, Ubuntu 24.04'
|
||||
validations:
|
||||
required: true
|
||||
|
||||
|
|
@ -47,8 +49,8 @@ body:
|
|||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Health check"
|
||||
description: "Output of `:checkhealth diffs`"
|
||||
label: 'Health check'
|
||||
description: 'Output of `:checkhealth diffs`'
|
||||
render: text
|
||||
|
||||
- type: textarea
|
||||
|
|
@ -1,13 +1,15 @@
|
|||
name: Feature Request
|
||||
description: Suggest a feature
|
||||
title: "feat: "
|
||||
title: 'feat: '
|
||||
labels: [enhancement]
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Prerequisites
|
||||
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
|
||||
|
||||
- type: textarea
|
||||
|
|
@ -14,4 +14,4 @@ repos:
|
|||
hooks:
|
||||
- id: prettier
|
||||
name: prettier
|
||||
files: \.(md|toml|yaml|sh)$
|
||||
files: \.(md|toml|yaml|yml|sh)$
|
||||
|
|
|
|||
10
.prettierrc
10
.prettierrc
|
|
@ -5,13 +5,5 @@
|
|||
"useTabs": false,
|
||||
"trailingComma": "none",
|
||||
"semi": false,
|
||||
"singleQuote": true,
|
||||
"overrides": [
|
||||
{
|
||||
"files": ["**/*.md"],
|
||||
"options": {
|
||||
"parser": "markdown"
|
||||
}
|
||||
}
|
||||
]
|
||||
"singleQuote": true
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue