From 0cddd8c16733182bcb10c2fb86ae9067f9e25fe1 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 9 Aug 2023 21:30:15 -0300 Subject: [PATCH] chore(vscode): add sample settings.json with yaml schema configuration --- .gitignore | 3 ++- .vscode/settings-sample.json | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings-sample.json diff --git a/.gitignore b/.gitignore index 35da8d54..45b74c09 100644 --- a/.gitignore +++ b/.gitignore @@ -21,7 +21,8 @@ dist/ # editors .idea/ -.vscode/ +.vscode/* +!.vscode/*-sample.json .fleet/ # exuberant ctags diff --git a/.vscode/settings-sample.json b/.vscode/settings-sample.json new file mode 100644 index 00000000..758c94d1 --- /dev/null +++ b/.vscode/settings-sample.json @@ -0,0 +1,5 @@ +{ + "yaml.schemas": { + "./docs/static/schema.json": "Taskfile.yml" + } +}