style(vscode): set correct file association
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 12s
Ansible Linter / ansible-lint (push) Successful in 2m45s

This commit is contained in:
Markus Pesch 2025-04-21 22:34:19 +02:00
parent 1e2bcabc7f
commit ed3f2098d9
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982

14
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,14 @@
{
"ansible.python.interpreterPath": "/bin/python",
"files.associations": {
"**/.gitea/**/*.yml": "yaml",
"**/.gitea/**/*.yaml": "yaml",
".drone.yml": "yaml",
"docker-compose*.yml": "dockercompose",
"*.yml": "ansible",
"*.yaml": "ansible",
".yamllint": "yaml",
".yamllint.yml": "yaml",
".yamllint.yaml": "yaml"
}
}