From 2f98870b65ea4dc63fe3abd7956f3a9a75abf993 Mon Sep 17 00:00:00 2001 From: jpallison0625 Date: Sat, 25 Oct 2025 14:44:41 +0000 Subject: [PATCH] Add .vscode/setting.json --- .vscode/setting.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .vscode/setting.json diff --git a/.vscode/setting.json b/.vscode/setting.json new file mode 100644 index 0000000..5f88636 --- /dev/null +++ b/.vscode/setting.json @@ -0,0 +1,32 @@ +{ + "files.associations": { + "*.yml": "yaml", + "*.yaml": "yaml", + "docker-compose*.yml": "yaml", + "stack.yml": "yaml" + }, + "yaml.schemas": { + "https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json": [ + "docker-compose*.yml", + "**/stacks/**/stack.yml" + ] + }, + "yaml.format.enable": true, + "yaml.validate": true, + "editor.formatOnSave": true, + "editor.rulers": [80, 120], + "files.trimTrailingWhitespace": true, + "files.insertFinalNewline": true, + "git.autofetch": true, + "git.confirmSync": false, + "terminal.integrated.defaultProfile.windows": "PowerShell", + "[yaml]": { + "editor.insertSpaces": true, + "editor.tabSize": 2, + "editor.autoIndent": "advanced", + "editor.defaultFormatter": "redhat.vscode-yaml" + }, + "[markdown]": { + "editor.defaultFormatter": "yzhang.markdown-all-in-one" + } +} \ No newline at end of file