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: []
|
labels: []
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
|
|
@ -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
|
||||||
|
|
@ -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
|
||||||
|
|
@ -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)$
|
||||||
|
|
|
||||||
10
.prettierrc
10
.prettierrc
|
|
@ -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"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue