From ed3f2098d974e503b52fab4476cf829e8c1c0be2 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 21 Apr 2025 22:34:19 +0200 Subject: [PATCH] style(vscode): set correct file association --- .vscode/settings.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a00d0c5 --- /dev/null +++ b/.vscode/settings.json @@ -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" + } +} \ No newline at end of file